diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-04-23 17:04:24 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-04-23 17:04:24 -0400 |
commit | 681793711abca2b45f210a553962e2c4884b5587 (patch) | |
tree | d193efbd433af7b19dbd5fc61286e3e04da02a5a /arch/blackfin | |
parent | 5d1617b247aa63698618215a9f39ecf905d55779 (diff) |
[Blackfin] arch: declare list of peripherals as const since we dont modify the incoming array
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/kernel/bfin_gpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/kernel/bfin_gpio.c b/arch/blackfin/kernel/bfin_gpio.c index 72477c252a94..fcb2f6cf430b 100644 --- a/arch/blackfin/kernel/bfin_gpio.c +++ b/arch/blackfin/kernel/bfin_gpio.c | |||
@@ -941,7 +941,7 @@ int peripheral_request(unsigned short per, const char *label) | |||
941 | EXPORT_SYMBOL(peripheral_request); | 941 | EXPORT_SYMBOL(peripheral_request); |
942 | #endif | 942 | #endif |
943 | 943 | ||
944 | int peripheral_request_list(unsigned short per[], const char *label) | 944 | int peripheral_request_list(const unsigned short per[], const char *label) |
945 | { | 945 | { |
946 | u16 cnt; | 946 | u16 cnt; |
947 | int ret; | 947 | int ret; |
@@ -994,7 +994,7 @@ void peripheral_free(unsigned short per) | |||
994 | } | 994 | } |
995 | EXPORT_SYMBOL(peripheral_free); | 995 | EXPORT_SYMBOL(peripheral_free); |
996 | 996 | ||
997 | void peripheral_free_list(unsigned short per[]) | 997 | void peripheral_free_list(const unsigned short per[]) |
998 | { | 998 | { |
999 | u16 cnt; | 999 | u16 cnt; |
1000 | for (cnt = 0; per[cnt] != 0; cnt++) | 1000 | for (cnt = 0; per[cnt] != 0; cnt++) |