diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-04-21 06:23:47 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-04-21 06:23:47 +0000 |
commit | 09a3cc0980ddd55c16ac2996c6b4f2db38d30475 (patch) | |
tree | 10c6213faee68f019e227bc90d6e524b4ad0bb20 /src | |
parent | 24243b2b7a93b99a78c620d79c5448fb79d490e7 (diff) | |
download | openocd+libswd-09a3cc0980ddd55c16ac2996c6b4f2db38d30475.tar.gz openocd+libswd-09a3cc0980ddd55c16ac2996c6b4f2db38d30475.tar.bz2 openocd+libswd-09a3cc0980ddd55c16ac2996c6b4f2db38d30475.tar.xz openocd+libswd-09a3cc0980ddd55c16ac2996c6b4f2db38d30475.zip |
Zach Welch <zw@superlucidity.net> add static keywords to at91rm9200
git-svn-id: svn://svn.berlios.de/openocd/trunk@1487 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r-- | src/jtag/at91rm9200.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jtag/at91rm9200.c b/src/jtag/at91rm9200.c index ce28bb53..45fb089b 100644 --- a/src/jtag/at91rm9200.c +++ b/src/jtag/at91rm9200.c @@ -101,14 +101,14 @@ struct device_t u32 SRST_MASK; /* SRST bitmask */ }; -struct device_t devices[] = +static struct device_t devices[] = { { "rea_ecr", PIOD, P27, PIOA, NC, PIOD, P23, PIOD, P24, PIOD, P26, PIOC, P5 }, { .name = NULL }, }; /* configuration */ -char* at91rm9200_device; +static char* at91rm9200_device; /* interface variables */ |