diff options
author | Ana Rey <anarey@gmail.com> | 2014-03-07 09:23:54 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-07 16:15:22 -0800 |
commit | da37aabf1368e35c895027af9c9094855e57cbe4 (patch) | |
tree | 1e064d2f51791b89dc29419b68a04ca89b2d6c6c /drivers/staging/rtl8187se | |
parent | 83efd52983b75ba976888a777df129b631e6ace5 (diff) |
staging: rtl8187se: Convert buffer typedef into a struct
The Documentation/CodingStyle doesn't recommend the use of typedef,
convert this to structure.
Signed-off-by: Ana Rey <anarey@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8187se')
-rw-r--r-- | drivers/staging/rtl8187se/r8180.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8187se/r8180.h b/drivers/staging/rtl8187se/r8180.h index 5ac46737157a..b8f96709e82b 100644 --- a/drivers/staging/rtl8187se/r8180.h +++ b/drivers/staging/rtl8187se/r8180.h @@ -167,11 +167,11 @@ typedef union _ThreeWire { } ThreeWireReg; -typedef struct buffer { +struct buffer { struct buffer *next; u32 *buf; dma_addr_t dma; -} buffer; +}; /* YJ,modified,080828. */ struct stats { |