From: Tony Cho Date: Mon, 21 Sep 2015 03:16:47 +0000 (+0900) Subject: staging: wilc1000: remove typedef from the struct tstrTimerCb X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=525819340a5bf487dbf2b3defb0a4bfe37a70c87;p=deliverable%2Flinux.git staging: wilc1000: remove typedef from the struct tstrTimerCb This patch removes typedef from the tstrTimerCb and renames it to timer_cb in order to comply with the Linux coding style. Signed-off-by: Tony Cho Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 93c4d7a2f97c..b6d914931f16 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -344,7 +344,7 @@ typedef struct { } tstrHostIFDelSta; /*! - * @struct tstrTimerCb + * @struct timer_cb * @brief Timer callback message body * @details * @todo @@ -353,9 +353,9 @@ typedef struct { * @date 25 March 2012 * @version 1.0 */ -typedef struct _tstrTimerCb { +struct timer_cb { void *pvUsrArg; /*!< Private data passed at timer start */ -} tstrTimerCb; +}; /*! * @struct tstrHostIfPowerMgmtParam @@ -429,7 +429,7 @@ union message_body { tstrHostIFDelSta strDelStaParam; /*!< Del Station message body */ struct add_sta_param strEditStaParam; /*!< Edit station message body */ /* tstrScanComplete strScanComplete; / *Received Async. Scan Complete message body* / */ - tstrTimerCb strTimerCb; /*!< Timer callback message body */ + struct timer_cb strTimerCb; /*!< Timer callback message body */ tstrHostIfPowerMgmtParam strPowerMgmtparam; /*!< Power Management message body */ tstrHostIfStaInactiveT strHostIfStaInactiveT; tstrHostIFSetIPAddr strHostIfSetIP;