diff options
author | David Vrabel <david.vrabel@csr.com> | 2007-08-08 14:23:05 +0100 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-09-23 21:16:27 +0200 |
commit | 7616ee95f27a04fd5a6434e9ef4a82cec4b2807c (patch) | |
tree | 93ec2054a7919af593e2324a5bfaf866ded416d6 /drivers/mmc/core/sdio_cis.c | |
parent | e6f918bf39773d712ab5b457bff54ade3bda0cb1 (diff) | |
download | blackbird-obmc-linux-7616ee95f27a04fd5a6434e9ef4a82cec4b2807c.tar.gz blackbird-obmc-linux-7616ee95f27a04fd5a6434e9ef4a82cec4b2807c.zip |
sdio: add SDIO_FBR_BASE(f) macro
Signed-off-by: David Vrabel <david.vrabel@csr.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc/core/sdio_cis.c')
-rw-r--r-- | drivers/mmc/core/sdio_cis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/core/sdio_cis.c b/drivers/mmc/core/sdio_cis.c index ec806a1229b6..d050c40cf046 100644 --- a/drivers/mmc/core/sdio_cis.c +++ b/drivers/mmc/core/sdio_cis.c @@ -145,7 +145,7 @@ static int sdio_read_cis(struct mmc_card *card, struct sdio_func *func) fn = 0; ret = mmc_io_rw_direct(card, 0, 0, - fn * 0x100 + SDIO_FBR_CIS + i, 0, &x); + SDIO_FBR_BASE(fn) + SDIO_FBR_CIS + i, 0, &x); if (ret) return ret; ptr |= x << (i * 8); |