mmc: msm_sdcc: Compile the driver for msm7x30
The controller base address is referred from platform resource instead of using #defines. This fixes the compilation error when driver is compiled for msm7x30. Signed-off-by: Sahitya Tummala <stummala@codeaurora.org> Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
This commit is contained in:
committed by
Daniel Walker
parent
08ecfde475
commit
edd4dd0e98
@@ -160,18 +160,7 @@ msmsdcc_stop_data(struct msmsdcc_host *host)
|
||||
|
||||
uint32_t msmsdcc_fifo_addr(struct msmsdcc_host *host)
|
||||
{
|
||||
switch (host->pdev_id) {
|
||||
case 1:
|
||||
return MSM_SDC1_PHYS + MMCIFIFO;
|
||||
case 2:
|
||||
return MSM_SDC2_PHYS + MMCIFIFO;
|
||||
case 3:
|
||||
return MSM_SDC3_PHYS + MMCIFIFO;
|
||||
case 4:
|
||||
return MSM_SDC4_PHYS + MMCIFIFO;
|
||||
}
|
||||
BUG();
|
||||
return 0;
|
||||
return host->memres->start + MMCIFIFO;
|
||||
}
|
||||
|
||||
static inline void
|
||||
|
Reference in New Issue
Block a user