diff options
author | Kyungmin Park <kyungmin.park@samsung.com> | 2008-03-26 16:09:38 -0400 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2008-04-18 14:05:30 -0400 |
commit | 8348f0029d85828671e3a1d11db41fe53afbdc0d (patch) | |
tree | ed90ba0f3e78aa8c1c4f6d5b0d7e00743b987e49 /drivers | |
parent | 01e77e13fc5a1e6c00ebb4f688293fa3116315ee (diff) |
MMC: OMAP: Check the get_cover_state function pointer if not set
If the get_cover_state is not set, it occurs the oops.
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers')
-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 |