diff options
Diffstat (limited to 'drivers/mmc/host/omap.c')
-rw-r--r-- | drivers/mmc/host/omap.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c index 9075838f712f..f7fb97802827 100644 --- a/drivers/mmc/host/omap.c +++ b/drivers/mmc/host/omap.c | |||
@@ -236,7 +236,10 @@ static void mmc_omap_release_slot(struct mmc_omap_slot *slot) | |||
236 | static inline | 236 | static inline |
237 | int mmc_omap_cover_is_open(struct mmc_omap_slot *slot) | 237 | int mmc_omap_cover_is_open(struct mmc_omap_slot *slot) |
238 | { | 238 | { |
239 | return slot->pdata->get_cover_state(mmc_dev(slot->mmc), slot->id); | 239 | if (slot->pdata->get_cover_state) |
240 | return slot->pdata->get_cover_state(mmc_dev(slot->mmc), | ||
241 | slot->id); | ||
242 | return 0; | ||
240 | } | 243 | } |
241 | 244 | ||
242 | static ssize_t | 245 | static ssize_t |