Commit 3cf9c9a7 authored by Glen Lee's avatar Glen Lee Committed by Greg Kroah-Hartman

staging: wilc1000: linux_wlan_sdio.c: fix checkpatch warning line over 80

This patch fixes checkpatch warning line over 80 characters.
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 491a2ed7
...@@ -74,9 +74,11 @@ int wilc_sdio_cmd53(struct wilc *wilc, sdio_cmd53_t *cmd) ...@@ -74,9 +74,11 @@ int wilc_sdio_cmd53(struct wilc *wilc, sdio_cmd53_t *cmd)
size = cmd->count; size = cmd->count;
if (cmd->read_write) { /* write */ if (cmd->read_write) { /* write */
ret = sdio_memcpy_toio(func, cmd->address, (void *)cmd->buffer, size); ret = sdio_memcpy_toio(func, cmd->address,
(void *)cmd->buffer, size);
} else { /* read */ } else { /* read */
ret = sdio_memcpy_fromio(func, (void *)cmd->buffer, cmd->address, size); ret = sdio_memcpy_fromio(func, (void *)cmd->buffer,
cmd->address, size);
} }
sdio_release_host(func); sdio_release_host(func);
...@@ -90,7 +92,8 @@ int wilc_sdio_cmd53(struct wilc *wilc, sdio_cmd53_t *cmd) ...@@ -90,7 +92,8 @@ int wilc_sdio_cmd53(struct wilc *wilc, sdio_cmd53_t *cmd)
return 1; return 1;
} }
static int linux_sdio_probe(struct sdio_func *func, const struct sdio_device_id *id) static int linux_sdio_probe(struct sdio_func *func,
const struct sdio_device_id *id)
{ {
struct wilc *wilc; struct wilc *wilc;
int gpio; int gpio;
...@@ -126,7 +129,9 @@ static struct sdio_driver wilc1000_sdio_driver = { ...@@ -126,7 +129,9 @@ static struct sdio_driver wilc1000_sdio_driver = {
.probe = linux_sdio_probe, .probe = linux_sdio_probe,
.remove = linux_sdio_remove, .remove = linux_sdio_remove,
}; };
module_driver(wilc1000_sdio_driver, sdio_register_driver, sdio_unregister_driver); module_driver(wilc1000_sdio_driver,
sdio_register_driver,
sdio_unregister_driver);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
int wilc_sdio_enable_interrupt(struct wilc *dev) int wilc_sdio_enable_interrupt(struct wilc *dev)
......
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