summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwdenk <wdenk>2005-04-03 14:18:51 +0000
committerwdenk <wdenk>2005-04-03 14:18:51 +0000
commit59acc296d97b7262b64be8bc23b12c47b4fdd7e6 (patch)
treec723cb572140eb039cd921b992069fb84353067b
parent400558b561e2bdb47f87b96b3510dda0881a3662 (diff)
Minor cleanup
-rw-r--r--cpu/at91rm9200/i2c.c4
-rw-r--r--include/configs/cmc_pu2.h2
-rw-r--r--net/net.c8
-rw-r--r--rtc/rs5c372.c1
4 files changed, 8 insertions, 7 deletions
diff --git a/cpu/at91rm9200/i2c.c b/cpu/at91rm9200/i2c.c
index 34a6f517b6..433dd32a23 100644
--- a/cpu/at91rm9200/i2c.c
+++ b/cpu/at91rm9200/i2c.c
@@ -118,8 +118,8 @@ i2c_probe(unsigned char chip)
}
int
-i2c_read(unsigned char chip, unsigned int addr, int alen,
- unsigned char *buffer, int len)
+i2c_read (unsigned char chip, unsigned int addr, int alen,
+ unsigned char *buffer, int len)
{
#ifdef CFG_I2C_EEPROM_ADDR_OVERFLOW
/* we only allow one address byte */
diff --git a/include/configs/cmc_pu2.h b/include/configs/cmc_pu2.h
index 5a0f460e68..ef2d1b7246 100644
--- a/include/configs/cmc_pu2.h
+++ b/include/configs/cmc_pu2.h
@@ -204,7 +204,7 @@ struct bd_info_ext {
#define CFG_HZ 1000
#define CFG_HZ_CLOCK AT91C_MASTER_CLOCK/2 /* AT91C_TC0_CMR is implicitly set to */
- /* AT91C_TC_TIMER_DIV1_CLOCK */
+ /* AT91C_TC_TIMER_DIV1_CLOCK */
#define CONFIG_STACKSIZE (32*1024) /* regular stack */
diff --git a/net/net.c b/net/net.c
index 11a286b578..00aa661502 100644
--- a/net/net.c
+++ b/net/net.c
@@ -468,7 +468,7 @@ restart:
/*
* Main packet reception loop. Loop receiving packets until
- * someone sets `NetQuit'.
+ * someone sets `NetState' to a state that terminates.
*/
for (;;) {
WATCHDOG_RESET();
@@ -503,7 +503,9 @@ restart:
thand_f *x;
#if defined(CONFIG_MII) || (CONFIG_COMMANDS & CFG_CMD_MII)
-#if defined(CFG_FAULT_ECHO_LINK_DOWN) && defined(CONFIG_STATUS_LED) && defined(STATUS_LED_RED)
+# if defined(CFG_FAULT_ECHO_LINK_DOWN) &&
+ defined(CONFIG_STATUS_LED) &&
+ defined(STATUS_LED_RED)
/*
* Echo the inverted link state to the fault LED.
*/
@@ -512,7 +514,7 @@ restart:
} else {
status_led_set (STATUS_LED_RED, STATUS_LED_ON);
}
-#endif /* CFG_FAULT_ECHO_LINK_DOWN, ... */
+# endif /* CFG_FAULT_ECHO_LINK_DOWN, ... */
#endif /* CONFIG_MII, ... */
x = timeHandler;
timeHandler = (thand_f *)0;
diff --git a/rtc/rs5c372.c b/rtc/rs5c372.c
index 0f8ec6224a..87f38c42bb 100644
--- a/rtc/rs5c372.c
+++ b/rtc/rs5c372.c
@@ -95,7 +95,6 @@ rs5c372_enable(void)
unsigned char buf[RS5C372_RAM_SIZE + 1];
int ret;
-
/* note that this returns reg. 15 in buf[1] */
ret = rs5c372_readram(&buf[1], RS5C372_RAM_SIZE);
if (ret != 0) {