Kishore, > +int twl6030_mmc_card_detect(struct device *dev, int slot) > +{ > + int ret = -EIO; > + u8 read_reg = 0; > + struct platform_device *pdev = to_platform_device(dev); > + > + switch (pdev->id) { > + case 0: > + /* > + * BIT0 of REG_MMC_CTRL > + * 0 - Card not present ,1 - Card present > + */ > + ret = twl_i2c_read_u8(TWL6030_MODULE_ID0, &read_reg, > + TWL6030_MMCCTRL); > + if (ret >= 0) > + ret = read_reg & STS_MMC; > + break; nitpick: may be you don't need a switch statement for only one case. > + default: > + pr_err("Unkown MMC controller %d in %s\n", pdev->id, > __func__); Thank you, Best regards, Hari -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html