This patch removes typedef for stUserThreadReq,
and changes the name of the struct to bcm_user_thread_req.
In addition, any calls to typedefs USER_THREAD_REQ, or
*PUSER_THREAD_REQ are changed to call the struct directly.

Signed-off-by: Kevin McKinney <klmckinn...@gmail.com>
---
 drivers/staging/bcm/Bcmchar.c |    2 +-
 drivers/staging/bcm/Ioctl.h   |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 45c066a..c1b6382 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/Bcmchar.c
@@ -478,7 +478,7 @@ static long bcm_char_ioctl(struct file *filp, UINT cmd, 
ULONG arg)
        break;
 
        case BCM_LED_THREAD_STATE_CHANGE_REQ: {
-               USER_THREAD_REQ threadReq = {0};
+               struct bcm_user_thread_req threadReq = {0};
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, OSAL_DBG, 
DBG_LVL_ALL, "User made LED thread InActive");
 
                if ((Adapter->IdleMode == TRUE) ||
diff --git a/drivers/staging/bcm/Ioctl.h b/drivers/staging/bcm/Ioctl.h
index d257712..561588e 100644
--- a/drivers/staging/bcm/Ioctl.h
+++ b/drivers/staging/bcm/Ioctl.h
@@ -24,11 +24,11 @@ typedef struct stGPIOInfo {
        unsigned int uiGpioValue; /* 1 set ; 0 not  set */
 } __packed GPIO_INFO, *PGPIO_INFO;
 
-typedef struct stUserThreadReq {
+struct bcm_user_thread_req {
        /* 0->Inactivate LED thread. */
        /* 1->Activate the LED thread */
        unsigned int ThreadState;
-} __packed USER_THREAD_REQ, *PUSER_THREAD_REQ;
+} __packed;
 
 #define LED_THREAD_ACTIVATION_REQ  1
 #define BCM_IOCTL                              'k'
-- 
1.7.9.5

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to