Re: [PATCH 3/4] staging:rtl8192u: Refactor member variable enabled - Style

2018-08-29 Thread John Whitmore
On Wed, Aug 29, 2018 at 02:20:33PM +0300, Dan Carpenter wrote: > Like you mentioned in the 0/4 email, the right thing to do here is just > to delete all references to ->enabled. > Thank you for your response, I'll do that in a future series of patches. jwhitmore

Re: [PATCH 3/4] staging:rtl8192u: Refactor member variable enabled - Style

2018-08-29 Thread Dan Carpenter
Like you mentioned in the 0/4 email, the right thing to do here is just to delete all references to ->enabled. regards, dan carpenter ___ devel mailing list de...@linuxdriverproject.org

[PATCH 3/4] staging:rtl8192u: Refactor member variable enabled - Style

2018-08-28 Thread John Whitmore
The structure rt_dot11d_info contains a memeber variable 'enabled', which causes a checkpatch issue as it is declared as being of type bool. The type of the variable has been changed to a 'u8', to clear the issue. Additionally to aid searching for the member variable in code it has been renamed