|
From: oharboe at B. <oh...@ma...> - 2009-04-21 08:23:49
|
Author: oharboe
Date: 2009-04-21 08:23:47 +0200 (Tue, 21 Apr 2009)
New Revision: 1487
Modified:
trunk/src/jtag/at91rm9200.c
Log:
Zach Welch <zw...@su...> add static keywords to at91rm9200
Modified: trunk/src/jtag/at91rm9200.c
===================================================================
--- trunk/src/jtag/at91rm9200.c 2009-04-21 05:42:18 UTC (rev 1486)
+++ trunk/src/jtag/at91rm9200.c 2009-04-21 06:23:47 UTC (rev 1487)
@@ -101,14 +101,14 @@
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
*/
|