|
@@ -763,12 +763,17 @@ static const short da850_evm_mcasp_pins[] __initconst = {
|
|
|
-1
|
|
|
};
|
|
|
|
|
|
+#define DA850_MMCSD_CD_PIN GPIO_TO_PIN(4, 0)
|
|
|
+#define DA850_MMCSD_WP_PIN GPIO_TO_PIN(4, 1)
|
|
|
+
|
|
|
static struct gpiod_lookup_table mmc_gpios_table = {
|
|
|
.dev_id = "da830-mmc.0",
|
|
|
.table = {
|
|
|
/* gpio chip 2 contains gpio range 64-95 */
|
|
|
- GPIO_LOOKUP("davinci_gpio.2", 0, "cd", GPIO_ACTIVE_LOW),
|
|
|
- GPIO_LOOKUP("davinci_gpio.2", 1, "wp", GPIO_ACTIVE_LOW),
|
|
|
+ GPIO_LOOKUP("davinci_gpio.0", DA850_MMCSD_CD_PIN, "cd",
|
|
|
+ GPIO_ACTIVE_LOW),
|
|
|
+ GPIO_LOOKUP("davinci_gpio.0", DA850_MMCSD_WP_PIN, "wp",
|
|
|
+ GPIO_ACTIVE_LOW),
|
|
|
},
|
|
|
};
|
|
|
|