aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/moxa.c
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2008-07-08 12:37:15 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2008-07-10 09:27:18 -0400
commit2bca76e89bc43f86136080536858048ebffab3e3 (patch)
tree3cf44472f5c6a1b83fdca6ca76e7a4f75ea19b9b /drivers/char/moxa.c
parentb561c74ae2832d32cc189ecd82863d31151cdcb5 (diff)
Fix a const assignment in moxa_load_fw()
Fix an assignment of a const pointer to a non-const pointer in moxa_load_fw(). Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/char/moxa.c')
-rw-r--r--drivers/char/moxa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/moxa.c b/drivers/char/moxa.c
index d57d3a61919b..e21346da3101 100644
--- a/drivers/char/moxa.c
+++ b/drivers/char/moxa.c
@@ -721,7 +721,7 @@ static int moxa_load_code(struct moxa_board_conf *brd, const void *ptr,
721 721
722static int moxa_load_fw(struct moxa_board_conf *brd, const struct firmware *fw) 722static int moxa_load_fw(struct moxa_board_conf *brd, const struct firmware *fw)
723{ 723{
724 void *ptr = fw->data; 724 const void *ptr = fw->data;
725 char rsn[64]; 725 char rsn[64];
726 u16 lens[5]; 726 u16 lens[5];
727 size_t len; 727 size_t len;
@@ -734,7 +734,7 @@ static int moxa_load_fw(struct moxa_board_conf *brd, const struct firmware *fw)
734 u8 model; /* C218T=1, C320T=2, CP204=3 */ 734 u8 model; /* C218T=1, C320T=2, CP204=3 */
735 u8 reserved2[8]; 735 u8 reserved2[8];
736 __le16 len[5]; 736 __le16 len[5];
737 } *hdr = ptr; 737 } const *hdr = ptr;
738 738
739 BUILD_BUG_ON(ARRAY_SIZE(hdr->len) != ARRAY_SIZE(lens)); 739 BUILD_BUG_ON(ARRAY_SIZE(hdr->len) != ARRAY_SIZE(lens));
740 740