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>
This commit is contained in:
Tapasweni Pathak 2014-09-21 07:03:31 +05:30 committed by Greg Kroah-Hartman
parent c08242008a
commit a988265c61
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ struct oid_par_priv {
struct oid_obj_priv { struct oid_obj_priv {
unsigned char dbg; /* 0: without OID debug message unsigned char dbg; /* 0: without OID debug message
* 1: with 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); uint oid_null_function(struct oid_par_priv *poid_par_priv);