From: Tobin C. Harding Date: Wed, 15 Mar 2017 05:14:38 +0000 (+1100) Subject: staging: ks7010: fix checkpatch PARENTHESIS_ALIGNMENT X-Git-Tag: v4.12-rc1~84^2~482 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9280b3a61ce006c803b616a922a635d04ffb040b;p=karo-tx-linux.git staging: ks7010: fix checkpatch PARENTHESIS_ALIGNMENT Checkpatch emits WARNING and CHECK for prototype declarations. WARNING: function definition argument 'void *' should also have an identifier name CHECK: Alignment should match open parenthesis Also prototype parameters wrap more than is necessary. Tidy up function prototypes. Fix 5 error/warning instances. Signed-off-by: Tobin C. Harding Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ks7010/ks_hostif.h b/drivers/staging/ks7010/ks_hostif.h index 46f8470f5cbf..0fa7b74798ea 100644 --- a/drivers/staging/ks7010/ks_hostif.h +++ b/drivers/staging/ks7010/ks_hostif.h @@ -649,18 +649,16 @@ enum { #include "ks_wlan.h" /* function prototype */ -int hostif_data_request(struct ks_wlan_private *priv, - struct sk_buff *packet); +int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *packet); void hostif_receive(struct ks_wlan_private *priv, unsigned char *p, - unsigned int size); + unsigned int size); void hostif_sme_enqueue(struct ks_wlan_private *priv, uint16_t event); int hostif_init(struct ks_wlan_private *priv); void hostif_exit(struct ks_wlan_private *priv); -int ks_wlan_hw_tx(struct ks_wlan_private *priv, void *p, - unsigned long size, - void (*complete_handler)(void *arg1, void *arg2), - void *arg1, void *arg2); -void send_packet_complete(void *, void *); +int ks_wlan_hw_tx(struct ks_wlan_private *priv, void *p, unsigned long size, + void (*complete_handler)(void *arg1, void *arg2), + void *arg1, void *arg2); +void send_packet_complete(void *arg1, void *arg2); void ks_wlan_hw_wakeup_request(struct ks_wlan_private *priv); int ks_wlan_hw_power_save(struct ks_wlan_private *priv);