summaryrefslogtreecommitdiff
path: root/drivers/staging/csr/csr_wifi_hip_chiphelper_private.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-20 19:05:42 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-20 19:05:42 (GMT)
commit26a6b2e1688bc154a16778851d710e90b62f715e (patch)
tree556fe1919c94aa4d4bac68d3e5dfbc40cfdeec10 /drivers/staging/csr/csr_wifi_hip_chiphelper_private.h
parentab2b8c7383caf6b071930e4e1d4a8b4bf1708f38 (diff)
downloadlinux-fsl-qoriq-26a6b2e1688bc154a16778851d710e90b62f715e.tar.xz
staging: csr: remove CsrUint32 typedef
Use the in-kernel u32 type instead. Cc: Mikko Virkkilä <mikko.virkkila@bluegiga.com> Cc: Lauri Hintsala <Lauri.Hintsala@bluegiga.com> Cc: Riku Mettälä <riku.mettala@bluegiga.com> Cc: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/csr/csr_wifi_hip_chiphelper_private.h')
-rw-r--r--drivers/staging/csr/csr_wifi_hip_chiphelper_private.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/drivers/staging/csr/csr_wifi_hip_chiphelper_private.h b/drivers/staging/csr/csr_wifi_hip_chiphelper_private.h
index aacafe1..de6e063 100644
--- a/drivers/staging/csr/csr_wifi_hip_chiphelper_private.h
+++ b/drivers/staging/csr/csr_wifi_hip_chiphelper_private.h
@@ -43,20 +43,20 @@ extern "C" {
/* Address value pairs */
struct val_array_t
{
- CsrUint32 len;
+ u32 len;
const struct chip_helper_init_values *vals;
};
/* Just a (counted) u16 array */
struct data_array_t
{
- CsrUint32 len;
+ u32 len;
const u16 *vals;
};
struct reset_prog_t
{
- CsrUint32 len;
+ u32 len;
const struct chip_helper_reset_values *vals;
};
@@ -69,7 +69,7 @@ struct chip_map_address_t
struct map_array_t
{
- CsrUint32 len;
+ u32 len;
const struct chip_map_address_t *vals;
};
@@ -118,7 +118,7 @@ struct chip_device_regs_t
struct window_shift_info_t
{
CsrInt32 allowed;
- CsrUint32 page_shift;
+ u32 page_shift;
u16 page_offset;
};
@@ -167,11 +167,11 @@ struct chip_device_desc_t
/* Some misc. info on the chip */
struct
{
- CsrUint32 has_flash : 1;
- CsrUint32 has_ext_sram : 1;
- CsrUint32 has_rom : 1;
- CsrUint32 has_bt : 1;
- CsrUint32 has_wlan : 1;
+ u32 has_flash : 1;
+ u32 has_ext_sram : 1;
+ u32 has_rom : 1;
+ u32 has_bt : 1;
+ u32 has_wlan : 1;
} bools;
/* This table is used to remap register addresses depending on what
@@ -184,10 +184,10 @@ struct chip_device_desc_t
The RAM offset is probably the most useful. */
struct
{
- CsrUint32 ram;
- CsrUint32 rom;
- CsrUint32 flash;
- CsrUint32 ext_sram;
+ u32 ram;
+ u32 rom;
+ u32 flash;
+ u32 ext_sram;
} prog_offset;
/* The offsets into the data address space of interesting things. */