Commit e0ba53a4 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: ks7010: change sdio related read/write function parameter types

This commit reviews and changes SDIO related read and write
functions parameter types to use the preferred u* kernel types.
Also length parameter which was defined as int has nonsense
because calls to this functions are called useing an unsigned
instead. Because of this length parameters have been changed
also into unsigned int.
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7dd51ea1
...@@ -67,8 +67,8 @@ static inline unsigned int cnt_rxqbody(struct ks_wlan_private *priv) ...@@ -67,8 +67,8 @@ static inline unsigned int cnt_rxqbody(struct ks_wlan_private *priv)
} }
/* Read single byte from device address into byte (CMD52) */ /* Read single byte from device address into byte (CMD52) */
static int ks7010_sdio_readb(struct ks_wlan_private *priv, unsigned int address, static int ks7010_sdio_readb(struct ks_wlan_private *priv,
unsigned char *byte) u32 address, u8 *byte)
{ {
struct sdio_func *func = priv->ks_sdio_card->func; struct sdio_func *func = priv->ks_sdio_card->func;
int ret; int ret;
...@@ -79,8 +79,8 @@ static int ks7010_sdio_readb(struct ks_wlan_private *priv, unsigned int address, ...@@ -79,8 +79,8 @@ static int ks7010_sdio_readb(struct ks_wlan_private *priv, unsigned int address,
} }
/* Read length bytes from device address into buffer (CMD53) */ /* Read length bytes from device address into buffer (CMD53) */
static int ks7010_sdio_read(struct ks_wlan_private *priv, unsigned int address, static int ks7010_sdio_read(struct ks_wlan_private *priv, u32 address,
unsigned char *buffer, int length) u8 *buffer, unsigned int length)
{ {
struct sdio_func *func = priv->ks_sdio_card->func; struct sdio_func *func = priv->ks_sdio_card->func;
...@@ -89,7 +89,7 @@ static int ks7010_sdio_read(struct ks_wlan_private *priv, unsigned int address, ...@@ -89,7 +89,7 @@ static int ks7010_sdio_read(struct ks_wlan_private *priv, unsigned int address,
/* Write single byte to device address (CMD52) */ /* Write single byte to device address (CMD52) */
static int ks7010_sdio_writeb(struct ks_wlan_private *priv, static int ks7010_sdio_writeb(struct ks_wlan_private *priv,
unsigned int address, unsigned char byte) u32 address, u8 byte)
{ {
struct sdio_func *func = priv->ks_sdio_card->func; struct sdio_func *func = priv->ks_sdio_card->func;
int ret; int ret;
...@@ -100,8 +100,8 @@ static int ks7010_sdio_writeb(struct ks_wlan_private *priv, ...@@ -100,8 +100,8 @@ static int ks7010_sdio_writeb(struct ks_wlan_private *priv,
} }
/* Write length bytes to device address from buffer (CMD53) */ /* Write length bytes to device address from buffer (CMD53) */
static int ks7010_sdio_write(struct ks_wlan_private *priv, unsigned int address, static int ks7010_sdio_write(struct ks_wlan_private *priv, u32 address,
unsigned char *buffer, int length) u8 *buffer, unsigned int length)
{ {
struct sdio_func *func = priv->ks_sdio_card->func; struct sdio_func *func = priv->ks_sdio_card->func;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment