mirror of https://gitee.com/openkylin/linux.git
USB: storage: karma: add whitespace after declarations
fixed the checkpatch.pl warning: WARNING: Missing a blank line after declarations Added space after declarations to conform to coding style. Signed-off-by: Bharath Vedartham <linux.bhar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d7a6c0ce8d
commit
9812de4fb8
|
@ -167,6 +167,7 @@ static int rio_karma_transport(struct scsi_cmnd *srb, struct us_data *us)
|
|||
static void rio_karma_destructor(void *extra)
|
||||
{
|
||||
struct karma_data *data = (struct karma_data *) extra;
|
||||
|
||||
kfree(data->recv);
|
||||
}
|
||||
|
||||
|
@ -174,6 +175,7 @@ static int rio_karma_init(struct us_data *us)
|
|||
{
|
||||
int ret = 0;
|
||||
struct karma_data *data = kzalloc(sizeof(struct karma_data), GFP_NOIO);
|
||||
|
||||
if (!data)
|
||||
goto out;
|
||||
|
||||
|
|
Loading…
Reference in New Issue