Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 92306
b: refs/heads/master
c: 6817937
h: refs/heads/master
v: v3
  • Loading branch information
Mike Frysinger authored and Bryan Wu committed Apr 23, 2008
1 parent 38f66ee commit 986771c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5d1617b247aa63698618215a9f39ecf905d55779
refs/heads/master: 681793711abca2b45f210a553962e2c4884b5587
4 changes: 2 additions & 2 deletions trunk/arch/blackfin/kernel/bfin_gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ int peripheral_request(unsigned short per, const char *label)
EXPORT_SYMBOL(peripheral_request);
#endif

int peripheral_request_list(unsigned short per[], const char *label)
int peripheral_request_list(const unsigned short per[], const char *label)
{
u16 cnt;
int ret;
Expand Down Expand Up @@ -994,7 +994,7 @@ void peripheral_free(unsigned short per)
}
EXPORT_SYMBOL(peripheral_free);

void peripheral_free_list(unsigned short per[])
void peripheral_free_list(const unsigned short per[])
{
u16 cnt;
for (cnt = 0; per[cnt] != 0; cnt++)
Expand Down
4 changes: 2 additions & 2 deletions trunk/include/asm-blackfin/portmux.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

int peripheral_request(unsigned short per, const char *label);
void peripheral_free(unsigned short per);
int peripheral_request_list(unsigned short per[], const char *label);
void peripheral_free_list(unsigned short per[]);
int peripheral_request_list(const unsigned short per[], const char *label);
void peripheral_free_list(const unsigned short per[]);

#include <asm/gpio.h>
#include <asm/mach/portmux.h>
Expand Down

0 comments on commit 986771c

Please sign in to comment.