p54: treat firmware data as const
authorDavid Woodhouse <dwmw2@infradead.org>
Fri, 23 May 2008 23:08:55 +0000 (00:08 +0100)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Thu, 10 Jul 2008 13:26:21 +0000 (14:26 +0100)
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
drivers/net/wireless/p54/p54usb.c

index 1610a73..815c095 100644 (file)
@@ -376,7 +376,8 @@ static int p54u_upload_firmware_3887(struct ieee80211_hw *dev)
        const struct firmware *fw_entry = NULL;
        int err, alen;
        u8 carry = 0;
-       u8 *buf, *tmp, *data;
+       u8 *buf, *tmp;
+       const u8 *data;
        unsigned int left, remains, block_size;
        struct x2_header *hdr;
        unsigned long timeout;
@@ -523,7 +524,7 @@ static int p54u_upload_firmware_net2280(struct ieee80211_hw *dev)
        void *buf;
        __le32 reg;
        unsigned int remains, offset;
-       u8 *data;
+       const u8 *data;
 
        buf = kmalloc(512, GFP_KERNEL);
        if (!buf) {