summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bsd_eth_drivers/ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/bsd_eth_drivers/ChangeLog b/bsd_eth_drivers/ChangeLog
index 3870355..384e5e8 100644
--- a/bsd_eth_drivers/ChangeLog
+++ b/bsd_eth_drivers/ChangeLog
@@ -1,3 +1,15 @@
+2010-06-30 Till Straumann <Till.Straumann@TU-Berlin.de>
+
+ * libbsdport/bus.h: PPC's inlines from libcpu/io.h still have
+ un-intuitive argument types (e.g., unsigned instead of uint32_t).
+ Added additional 'iotype' arg to BUS_SPACE_DECL macro (ppc only)
+ so that we can cast to the correct type as expected by libcpu/io.h.
+ Hopefully that doesn't bring us into C99 alias hell.
+
+ * libbsdport/devicet.c: Silence compiler warnings by casting (char)
+ argument passed to 'ctype.h' functions [toupper + friends] ->
+ (unsigned char) as these functions expect 'int'.
+
2010-03-07 Till Straumann <Till.Straumann@TU-Berlin.de>
* links.am: POSIXified sed commands for sake of portability.