This patch inserts blank lines after declarations to avoid checkpatch warning.
After our fixes in 'wlan-ng/prism2mib.c' there are still two checkpatch warnings about lines over 80 characters remaining. Signed-off-by: Johannes Stadlinger <[email protected]> Signed-off-by: Maximilian Eschenbacher <[email protected]> CC: [email protected] CC: Greg Kroah-Hartman <[email protected]> CC: Josh Triplett <[email protected]> CC: Vitaly Osipov <[email protected]> CC: Himangi Saraogi <[email protected]> CC: [email protected] CC: [email protected] --- drivers/staging/wlan-ng/prism2mib.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/wlan-ng/prism2mib.c b/drivers/staging/wlan-ng/prism2mib.c index bdd3b4c..3ea24d6 100644 --- a/drivers/staging/wlan-ng/prism2mib.c +++ b/drivers/staging/wlan-ng/prism2mib.c @@ -85,7 +85,8 @@ struct mibrec { u16 parm1; u16 parm2; u16 parm3; - int (*func) (struct mibrec *mib, + + int (*func)(struct mibrec *mib, int isget, wlandevice_t *wlandev, hfa384x_t *hw, @@ -722,6 +723,7 @@ static int prism2mib_priv(struct mibrec *mib, switch (mib->did) { case DIDmib_lnx_lnxConfigTable_lnxRSNAIE:{ hfa384x_WPAData_t wpa; + if (isget) { hfa384x_drvr_getconfig(hw, HFA384x_RID_CNFWPADATA, -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

