config MMC_ATMELMCI
        tristate "Atmel SD/MMC Driver (Multimedia Card Interface)"
-       depends on AVR32 || ARCH_AT91
+       depends on ARCH_AT91
        help
-         This selects the Atmel Multimedia Card Interface driver. If
-         you have an AT32 (AVR32) or AT91 platform with a Multimedia
-         Card slot, say Y or M here.
+         This selects the Atmel Multimedia Card Interface driver.
+         If you have an AT91 platform with a Multimedia Card slot,
+         say Y or M here.
 
          If unsure, say N.
 
 
 #include <asm/unaligned.h>
 
 /*
- * Superset of MCI IP registers integrated in Atmel AVR32 and AT91 Processors
+ * Superset of MCI IP registers integrated in Atmel AT91 Processor
  * Registers and bitfields marked with [2] are only available in MCI2
  */
 
 #define        atmci_writel(port, reg, value)                  \
        __raw_writel((value), (port)->regs + reg)
 
-/* On AVR chips the Peripheral DMA Controller is not connected to MCI. */
-#ifdef CONFIG_AVR32
-#      define ATMCI_PDC_CONNECTED      0
-#else
-#      define ATMCI_PDC_CONNECTED      1
-#endif
-
 #define AUTOSUSPEND_DELAY      50
 
 #define ATMCI_DATA_ERROR_FLAGS (ATMCI_DCRCE | ATMCI_DTOE | ATMCI_OVRE | ATMCI_UNRE)
                        mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
                break;
        default:
-               /*
-                * TODO: None of the currently available AVR32-based
-                * boards allow MMC power to be turned off. Implement
-                * power control when this can be tested properly.
-                *
-                * We also need to hook this into the clock management
-                * somehow so that newly inserted cards aren't
-                * subjected to a fast clock before we have a chance
-                * to figure out what the maximum rate is. Currently,
-                * there's no way to avoid this, and there never will
-                * be for boards that don't support power control.
-                */
                break;
        }
-
 }
 
 static int atmci_get_ro(struct mmc_host *mmc)
                        "version: 0x%x\n", version);
 
        host->caps.has_dma_conf_reg = 0;
-       host->caps.has_pdc = ATMCI_PDC_CONNECTED;
+       host->caps.has_pdc = 1;
        host->caps.has_cfg_reg = 0;
        host->caps.has_cstor_reg = 0;
        host->caps.has_highspeed = 0;