diff options
author | Tapasweni Pathak <tapaswenipathak@gmail.com> | 2014-09-21 07:03:31 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-23 08:14:36 -0700 |
commit | a988265c61a8e0f4420148c8b62f334b31f49c69 (patch) | |
tree | 26dd95bcf73e86a15c81bd1462a8ea05e31fc42d /drivers/staging/rtl8712 | |
parent | c08242008a11d01112b8681b94ccce6ea6e4ae8a (diff) |
Staging: rtl8712: Add space after return type
This patch fixes checkpatch.pl warning in file rtl871x_ioctl.h
WARNING : Missing space after return type
Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8712')
-rw-r--r-- | drivers/staging/rtl8712/rtl871x_ioctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8712/rtl871x_ioctl.h b/drivers/staging/rtl8712/rtl871x_ioctl.h index 20168028d39d..8e6ef5d49fbf 100644 --- a/drivers/staging/rtl8712/rtl871x_ioctl.h +++ b/drivers/staging/rtl8712/rtl871x_ioctl.h @@ -69,7 +69,7 @@ struct oid_par_priv { struct oid_obj_priv { unsigned char dbg; /* 0: without OID debug message * 1: with OID debug message */ - uint(*oidfuns)(struct oid_par_priv *poid_par_priv); + uint (*oidfuns)(struct oid_par_priv *poid_par_priv); }; uint oid_null_function(struct oid_par_priv *poid_par_priv); |