staging: wilc1000: use u32 instead of uint32_t
[deliverable/linux.git] / drivers / staging / wilc1000 / wilc_wlan_cfg.h
1 /* ////////////////////////////////////////////////////////////////////////// */
2 /* */
3 /* Copyright (c) Atmel Corporation. All rights reserved. */
4 /* */
5 /* Module Name: wilc_wlan_cfg.h */
6 /* */
7 /* */
8 /* ///////////////////////////////////////////////////////////////////////// */
9
10 #ifndef WILC_WLAN_CFG_H
11 #define WILC_WLAN_CFG_H
12
13 typedef struct {
14 u16 id;
15 u16 val;
16 } wilc_cfg_byte_t;
17
18 typedef struct {
19 u16 id;
20 u16 val;
21 } wilc_cfg_hword_t;
22
23 typedef struct {
24 u32 id;
25 u32 val;
26 } wilc_cfg_word_t;
27
28 typedef struct {
29 u32 id;
30 u8 *str;
31 } wilc_cfg_str_t;
32
33 #endif
This page took 0.034583 seconds and 5 git commands to generate.