Skip to content

Commit

Permalink
MMC: OMAP: Check the get_cover_state function pointer if not set
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kyungmin Park authored and Pierre Ossman committed Apr 18, 2008
1 parent 01e77e1 commit 8348f00
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/mmc/host/omap.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,10 @@ static void mmc_omap_release_slot(struct mmc_omap_slot *slot)
static inline
int mmc_omap_cover_is_open(struct mmc_omap_slot *slot)
{
return slot->pdata->get_cover_state(mmc_dev(slot->mmc), slot->id);
if (slot->pdata->get_cover_state)
return slot->pdata->get_cover_state(mmc_dev(slot->mmc),
slot->id);
return 0;
}

static ssize_t
Expand Down

0 comments on commit 8348f00

Please sign in to comment.