aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/csr/csr_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/csr/csr_lib.h')
-rw-r--r--drivers/staging/csr/csr_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/csr/csr_lib.h b/drivers/staging/csr/csr_lib.h
index 171f5feeea9..041bd0950b3 100644
--- a/drivers/staging/csr/csr_lib.h
+++ b/drivers/staging/csr/csr_lib.h
@@ -35,7 +35,7 @@ CsrEvent *CsrEvent_struct(CsrUint16 primtype, CsrUint16 msgtype);
35typedef struct 35typedef struct
36{ 36{
37 CsrPrim type; 37 CsrPrim type;
38 CsrUint8 value; 38 u8 value;
39} CsrEventCsrUint8; 39} CsrEventCsrUint8;
40 40
41/*----------------------------------------------------------------------------* 41/*----------------------------------------------------------------------------*
@@ -46,7 +46,7 @@ typedef struct
46 * Allocates and fills in a message with the signature CsrEventCsrUint8 46 * Allocates and fills in a message with the signature CsrEventCsrUint8
47 * 47 *
48 *----------------------------------------------------------------------------*/ 48 *----------------------------------------------------------------------------*/
49CsrEventCsrUint8 *CsrEventCsrUint8_struct(CsrUint16 primtype, CsrUint16 msgtype, CsrUint8 value); 49CsrEventCsrUint8 *CsrEventCsrUint8_struct(CsrUint16 primtype, CsrUint16 msgtype, u8 value);
50 50
51typedef struct 51typedef struct
52{ 52{
@@ -68,7 +68,7 @@ typedef struct
68{ 68{
69 CsrPrim type; 69 CsrPrim type;
70 CsrUint16 value1; 70 CsrUint16 value1;
71 CsrUint8 value2; 71 u8 value2;
72} CsrEventCsrUint16CsrUint8; 72} CsrEventCsrUint16CsrUint8;
73 73
74/*----------------------------------------------------------------------------* 74/*----------------------------------------------------------------------------*
@@ -79,7 +79,7 @@ typedef struct
79 * Allocates and fills in a message with the signature CsrEventCsrUint16CsrUint8 79 * Allocates and fills in a message with the signature CsrEventCsrUint16CsrUint8
80 * 80 *
81 *----------------------------------------------------------------------------*/ 81 *----------------------------------------------------------------------------*/
82CsrEventCsrUint16CsrUint8 *CsrEventCsrUint16CsrUint8_struct(CsrUint16 primtype, CsrUint16 msgtype, CsrUint16 value1, CsrUint8 value2); 82CsrEventCsrUint16CsrUint8 *CsrEventCsrUint16CsrUint8_struct(CsrUint16 primtype, CsrUint16 msgtype, CsrUint16 value1, u8 value2);
83 83
84typedef struct 84typedef struct
85{ 85{