projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb49cdd
)
staging: comedi: s626: make trimchan[] and trimadrs[] const
author
Ian Abbott
<abbotti@mev.co.uk>
Tue, 8 Oct 2013 18:06:37 +0000
(19:06 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Fri, 11 Oct 2013 22:34:21 +0000
(15:34 -0700)
Declare the static variables `trimchan[]` and `trimadrs[]` as constant
data.
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/s626.c
patch
|
blob
|
history
diff --git
a/drivers/staging/comedi/drivers/s626.c
b/drivers/staging/comedi/drivers/s626.c
index 7c51754d8a79957d9841dbb88a224c973ab0185b..529ba3194adf91ba717fb1a24dac3a3345e1a334 100644
(file)
--- a/
drivers/staging/comedi/drivers/s626.c
+++ b/
drivers/staging/comedi/drivers/s626.c
@@
-339,10
+339,10
@@
static uint8_t i2c_read(struct comedi_device *dev, uint8_t addr)
/* Slot 0 always shifts in 0xFF and store it to FB_BUFFER2. */
/* TrimDac LogicalChan-to-PhysicalChan mapping table. */
-static uint8_t trimchan[] = { 10, 9, 8, 3, 2, 7, 6, 1, 0, 5, 4 };
+static
const
uint8_t trimchan[] = { 10, 9, 8, 3, 2, 7, 6, 1, 0, 5, 4 };
/* TrimDac LogicalChan-to-EepromAdrs mapping table. */
-static uint8_t trimadrs[] = {
+static
const
uint8_t trimadrs[] = {
0x40, 0x41, 0x42, 0x50, 0x51, 0x52, 0x53, 0x60, 0x61, 0x62, 0x63
};