diff options
author | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-02 11:29:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-02 11:29:04 -0500 |
commit | cdb54fac35812a21943f0e506e8e3b94b469a77c (patch) | |
tree | 52b076a044b7fcfa9c14df4b4cac1ceff51ce689 /drivers/mmc/wbsd.c | |
parent | 37043318b12ea351c357d7bd8a184b63940f38d7 (diff) | |
parent | 8b7feff881b7e9f065ddd718a6841121207c3c19 (diff) |
Merge branch 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/drzeus/mmc
* 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/drzeus/mmc:
mmc: correct request error handling
mmc: Flush block queue when removing card
mmc: sdhci high speed support
mmc: Support for high speed SD cards
mmc: Fix mmc_delay() function
mmc: Add support for mmc v4 wide-bus modes
[PATCH] mmc: Add support for mmc v4 high speed mode
trivial change for mmc/Kconfig: MMC_PXA does not mean only PXA255
Make general code cleanups
Add MMC_CAP_{MULTIWRITE,BYTEBLOCK} flags
Platform device error handling cleanup
Move register definitions away from the header file
Change OMAP_MMC_{READ,WRITE} macros to use the host pointer
Replace base with virt_base and phys_base
mmc: constify mmc_host_ops vectors
mmc: remove kernel_thread()
Diffstat (limited to 'drivers/mmc/wbsd.c')
-rw-r--r-- | drivers/mmc/wbsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/wbsd.c b/drivers/mmc/wbsd.c index 682e62b0b09d..7a282672f8e9 100644 --- a/drivers/mmc/wbsd.c +++ b/drivers/mmc/wbsd.c | |||
@@ -1021,7 +1021,7 @@ static int wbsd_get_ro(struct mmc_host *mmc) | |||
1021 | return csr & WBSD_WRPT; | 1021 | return csr & WBSD_WRPT; |
1022 | } | 1022 | } |
1023 | 1023 | ||
1024 | static struct mmc_host_ops wbsd_ops = { | 1024 | static const struct mmc_host_ops wbsd_ops = { |
1025 | .request = wbsd_request, | 1025 | .request = wbsd_request, |
1026 | .set_ios = wbsd_set_ios, | 1026 | .set_ios = wbsd_set_ios, |
1027 | .get_ro = wbsd_get_ro, | 1027 | .get_ro = wbsd_get_ro, |