]> Pileus Git - ~andy/linux/commitdiff
iwlwifi: Renames struct fw_image_desc to struct fw_desc
authorTomas Winkler <tomas.winkler@intel.com>
Thu, 25 Oct 2007 09:15:41 +0000 (17:15 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 23:03:20 +0000 (15:03 -0800)
This patche shortens the name of struct fw_image_desc to be struct
fw_desc.

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/iwlwifi/iwl-priv.h
drivers/net/wireless/iwlwifi/iwlwifi.h

index f43679a42ae0838ccf4e8731347a83630edb0607..c25f2ffccfff4960c78edb60c12fecbd5d64505f 100644 (file)
@@ -102,12 +102,12 @@ struct iwl_priv {
        void __iomem *hw_base;
 
        /* uCode images, save to reload in case of failure */
-       struct fw_image_desc ucode_code;        /* runtime inst */
-       struct fw_image_desc ucode_data;        /* runtime data original */
-       struct fw_image_desc ucode_data_backup; /* runtime data save/restore */
-       struct fw_image_desc ucode_init;        /* initialization inst */
-       struct fw_image_desc ucode_init_data;   /* initialization data */
-       struct fw_image_desc ucode_boot;        /* bootstrap inst */
+       struct fw_desc ucode_code;      /* runtime inst */
+       struct fw_desc ucode_data;      /* runtime data original */
+       struct fw_desc ucode_data_backup;       /* runtime data save/restore */
+       struct fw_desc ucode_init;      /* initialization inst */
+       struct fw_desc ucode_init_data; /* initialization data */
+       struct fw_desc ucode_boot;      /* bootstrap inst */
 
 
        struct iwl_rxon_time_cmd rxon_timing;
index c5c9c5d7dce54664f39d26cc61146fb8ef83cfeb..90716006beac8c15f2775a37eb3a126ce51408a1 100644 (file)
@@ -497,7 +497,7 @@ struct iwl_station_entry {
 };
 
 /* one for each uCode image (inst/data, boot/init/runtime) */
-struct fw_image_desc {
+struct fw_desc {
        void *v_addr;           /* access by driver */
        dma_addr_t p_addr;      /* access by card's busmaster DMA */
        u32 len;                /* bytes */