diff options
author | David Woodhouse <dwmw2@infradead.org> | 2008-05-24 01:08:55 +0200 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-10 15:26:21 +0200 |
commit | 8b72eb4333aba692a16339acf8a74d84b10d3568 (patch) | |
tree | b2694bc280f7b5c691e851b97d71adce0117053d | |
parent | rt2x00: treat firmware data as const (diff) | |
download | linux-8b72eb4333aba692a16339acf8a74d84b10d3568.tar.xz linux-8b72eb4333aba692a16339acf8a74d84b10d3568.zip |
p54: treat firmware data as const
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
-rw-r--r-- | drivers/net/wireless/p54/p54usb.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/p54/p54usb.c b/drivers/net/wireless/p54/p54usb.c index 1610a7308c1d..815c095ef797 100644 --- a/drivers/net/wireless/p54/p54usb.c +++ b/drivers/net/wireless/p54/p54usb.c @@ -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) { |