diff options
author | Dmitry Shmidt <dimitrysh@google.com> | 2008-11-11 11:22:38 -0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2012-02-14 11:26:11 -0800 |
commit | 8683060cda702378e5582315cedf613893db735a (patch) | |
tree | ce27ac988365dcbdb365d9f300701b778e3ccd48 /drivers | |
parent | 9ee8858fe8b5588cbb85a536179171880820aac6 (diff) |
trout: Add functions for WiFi
Diffstat (limited to 'drivers')
-rwxr-xr-x[-rw-r--r--] | drivers/mmc/core/sdio_io.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/drivers/mmc/core/sdio_io.c b/drivers/mmc/core/sdio_io.c index 8f6f5ac131f..01fa6e8648c 100644..100755 --- a/drivers/mmc/core/sdio_io.c +++ b/drivers/mmc/core/sdio_io.c @@ -388,6 +388,39 @@ u8 sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret) EXPORT_SYMBOL_GPL(sdio_readb); /** + * sdio_readb_ext - read a single byte from a SDIO function + * @func: SDIO function to access + * @addr: address to read + * @err_ret: optional status value from transfer + * @in: value to add to argument + * + * Reads a single byte from the address space of a given SDIO + * function. If there is a problem reading the address, 0xff + * is returned and @err_ret will contain the error code. + */ +unsigned char sdio_readb_ext(struct sdio_func *func, unsigned int addr, + int *err_ret, unsigned in) +{ + int ret; + unsigned char val; + + BUG_ON(!func); + + if (err_ret) + *err_ret = 0; + + ret = mmc_io_rw_direct(func->card, 0, func->num, addr, (u8)in, &val); + if (ret) { + if (err_ret) + *err_ret = ret; + return 0xFF; + } + + return val; +} +EXPORT_SYMBOL_GPL(sdio_readb_ext); + +/** * sdio_writeb - write a single byte to a SDIO function * @func: SDIO function to access * @b: byte to write |