aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/cyclades.c
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2008-05-23 18:57:19 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2008-07-10 09:26:01 -0400
commitf61e761e2128c7ca0d044651b18928991ab03be2 (patch)
tree5072ead6f1cad0c2cfa4fc9e90808277d449649c /drivers/char/cyclades.c
parent8187b4fb9c17ea8e2a71c0563434f3ee08aad0d7 (diff)
cyclades: treat firmware data as const
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/char/cyclades.c')
-rw-r--r--drivers/char/cyclades.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/char/cyclades.c b/drivers/char/cyclades.c
index ef73e72daedc..6bff9d87dc57 100644
--- a/drivers/char/cyclades.c
+++ b/drivers/char/cyclades.c
@@ -4668,7 +4668,7 @@ static inline int __devinit cyc_isfwstr(const char *str, unsigned int size)
4668 return 0; 4668 return 0;
4669} 4669}
4670 4670
4671static inline void __devinit cyz_fpga_copy(void __iomem *fpga, u8 *data, 4671static inline void __devinit cyz_fpga_copy(void __iomem *fpga, const u8 *data,
4672 unsigned int size) 4672 unsigned int size)
4673{ 4673{
4674 for (; size > 0; size--) { 4674 for (; size > 0; size--) {
@@ -4701,10 +4701,10 @@ static int __devinit __cyz_load_fw(const struct firmware *fw,
4701 const char *name, const u32 mailbox, void __iomem *base, 4701 const char *name, const u32 mailbox, void __iomem *base,
4702 void __iomem *fpga) 4702 void __iomem *fpga)
4703{ 4703{
4704 void *ptr = fw->data; 4704 const void *ptr = fw->data;
4705 struct zfile_header *h = ptr; 4705 const struct zfile_header *h = ptr;
4706 struct zfile_config *c, *cs; 4706 const struct zfile_config *c, *cs;
4707 struct zfile_block *b, *bs; 4707 const struct zfile_block *b, *bs;
4708 unsigned int a, tmp, len = fw->size; 4708 unsigned int a, tmp, len = fw->size;
4709#define BAD_FW KERN_ERR "Bad firmware: " 4709#define BAD_FW KERN_ERR "Bad firmware: "
4710 if (len < sizeof(*h)) { 4710 if (len < sizeof(*h)) {