mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
HTC Dream: mmc compilation fixes
Add missing include for msm_sdcc compilation, and remove pwrsink support that is not mainline, yet. Signed-off-by: Pavel Machek <pavel@ucw.cz> [dwalker@codeaurora.org : fixed indent in mmc.h] Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
This commit is contained in:
parent
4e00dc762d
commit
3989d17847
2 changed files with 27 additions and 4 deletions
26
arch/arm/mach-msm/include/mach/mmc.h
Normal file
26
arch/arm/mach-msm/include/mach/mmc.h
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
/*
|
||||||
|
* arch/arm/include/asm/mach/mmc.h
|
||||||
|
*/
|
||||||
|
#ifndef ASMARM_MACH_MMC_H
|
||||||
|
#define ASMARM_MACH_MMC_H
|
||||||
|
|
||||||
|
#include <linux/mmc/host.h>
|
||||||
|
#include <linux/mmc/card.h>
|
||||||
|
#include <linux/mmc/sdio_func.h>
|
||||||
|
|
||||||
|
struct embedded_sdio_data {
|
||||||
|
struct sdio_cis cis;
|
||||||
|
struct sdio_cccr cccr;
|
||||||
|
struct sdio_embedded_func *funcs;
|
||||||
|
int num_funcs;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct mmc_platform_data {
|
||||||
|
unsigned int ocr_mask; /* available voltages */
|
||||||
|
u32 (*translate_vdd)(struct device *, unsigned int);
|
||||||
|
unsigned int (*status)(struct device *);
|
||||||
|
struct embedded_sdio_data *embedded_sdio;
|
||||||
|
int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
|
@ -38,10 +38,9 @@
|
||||||
#include <asm/div64.h>
|
#include <asm/div64.h>
|
||||||
#include <asm/sizes.h>
|
#include <asm/sizes.h>
|
||||||
|
|
||||||
#include <asm/mach/mmc.h>
|
#include <mach/mmc.h>
|
||||||
#include <mach/msm_iomap.h>
|
#include <mach/msm_iomap.h>
|
||||||
#include <mach/dma.h>
|
#include <mach/dma.h>
|
||||||
#include <mach/htc_pwrsink.h>
|
|
||||||
|
|
||||||
#include "msm_sdcc.h"
|
#include "msm_sdcc.h"
|
||||||
|
|
||||||
|
@ -775,13 +774,11 @@ msmsdcc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
|
||||||
|
|
||||||
switch (ios->power_mode) {
|
switch (ios->power_mode) {
|
||||||
case MMC_POWER_OFF:
|
case MMC_POWER_OFF:
|
||||||
htc_pwrsink_set(PWRSINK_SDCARD, 0);
|
|
||||||
break;
|
break;
|
||||||
case MMC_POWER_UP:
|
case MMC_POWER_UP:
|
||||||
pwr |= MCI_PWR_UP;
|
pwr |= MCI_PWR_UP;
|
||||||
break;
|
break;
|
||||||
case MMC_POWER_ON:
|
case MMC_POWER_ON:
|
||||||
htc_pwrsink_set(PWRSINK_SDCARD, 100);
|
|
||||||
pwr |= MCI_PWR_ON;
|
pwr |= MCI_PWR_ON;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue