Commit a495d02f authored by Paul Walmsley's avatar Paul Walmsley Committed by Tony Lindgren

HSMMC: Fix omap_hsmmc.c compilation

Fix asm/semaphore.h to be linux/semaphore.h; also remove
MMC_CAP_MULTIWRITE per 23af6039.
Signed-off-by: default avatarPaul Walmsley <paul@pwsan.com>
Cc: <madhu.cr@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent d12a00e6
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include <linux/clk.h> #include <linux/clk.h>
#include <linux/mmc/host.h> #include <linux/mmc/host.h>
#include <linux/io.h> #include <linux/io.h>
#include <asm/semaphore.h> #include <linux/semaphore.h>
#include <asm/dma.h> #include <asm/dma.h>
#include <asm/hardware.h> #include <asm/hardware.h>
#include <asm/arch/board.h> #include <asm/arch/board.h>
...@@ -810,8 +810,7 @@ static int __init omap_mmc_probe(struct platform_device *pdev) ...@@ -810,8 +810,7 @@ static int __init omap_mmc_probe(struct platform_device *pdev)
mmc->max_seg_size = mmc->max_req_size; mmc->max_seg_size = mmc->max_req_size;
mmc->ocr_avail = mmc_slot(host).ocr_mask; mmc->ocr_avail = mmc_slot(host).ocr_mask;
mmc->caps |= MMC_CAP_MULTIWRITE | MMC_CAP_MMC_HIGHSPEED | mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED;
MMC_CAP_SD_HIGHSPEED;
if (pdata->conf.wire4) if (pdata->conf.wire4)
mmc->caps |= MMC_CAP_4_BIT_DATA; mmc->caps |= MMC_CAP_4_BIT_DATA;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment