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

staging: wilc1000: linux_wlan_spi.c: add a blank

This patch fixes checkpatch warning: missing a blank like after declarations.
Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5b46e167
...@@ -79,6 +79,7 @@ int wilc_spi_write(struct wilc *wilc, u8 *b, u32 len) ...@@ -79,6 +79,7 @@ int wilc_spi_write(struct wilc *wilc, u8 *b, u32 len)
.delay_usecs = 0, .delay_usecs = 0,
}; };
char *r_buffer = kzalloc(len, GFP_KERNEL); char *r_buffer = kzalloc(len, GFP_KERNEL);
if (!r_buffer) if (!r_buffer)
return -ENOMEM; return -ENOMEM;
...@@ -127,6 +128,7 @@ int wilc_spi_read(struct wilc *wilc, u8 *rb, u32 rlen) ...@@ -127,6 +128,7 @@ int wilc_spi_read(struct wilc *wilc, u8 *rb, u32 rlen)
}; };
char *t_buffer = kzalloc(rlen, GFP_KERNEL); char *t_buffer = kzalloc(rlen, GFP_KERNEL);
if (!t_buffer) if (!t_buffer)
return -ENOMEM; return -ENOMEM;
......
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