Révision | ceac4ecf4c7ed63b14456101c152180ae56d40e7 (tree) |
---|---|
l'heure | 2014-08-28 04:04:41 |
Auteur | Joel Sherrill <joel.sherrill@oarc...> |
Commiter | Joel Sherrill |
psim: Correct spelling in comments.
2014-08-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* basics.h, device.c, device.h, hw_htab.c, hw_memory.c:
Correct spelling in comments.
@@ -1,3 +1,8 @@ | ||
1 | +2014-08-27 Joel Sherrill <joel.sherrill@oarcorp.com> | |
2 | + | |
3 | + * basics.h, device.c, device.h, hw_htab.c, hw_memory.c: | |
4 | + Correct spelling in comments. | |
5 | + | |
1 | 6 | 2014-08-19 Alan Modra <amodra@gmail.com> |
2 | 7 | |
3 | 8 | * configure.ac: Invoke AC_PLUGINS. |
@@ -95,6 +95,7 @@ typedef enum { | ||
95 | 95 | |
96 | 96 | #include <stdarg.h> |
97 | 97 | #include <stdio.h> |
98 | +#include <stdlib.h> | |
98 | 99 | |
99 | 100 | |
100 | 101 | #ifndef NORETURN |
@@ -1815,7 +1815,7 @@ device_ioctl(device *me, | ||
1815 | 1815 | /* I/O */ |
1816 | 1816 | |
1817 | 1817 | EXTERN_DEVICE\ |
1818 | -(void volatile) | |
1818 | +(void) | |
1819 | 1819 | device_error(device *me, |
1820 | 1820 | const char *fmt, |
1821 | 1821 | ...) |
@@ -726,7 +726,7 @@ EXTERN_DEVICE\ | ||
726 | 726 | */ |
727 | 727 | |
728 | 728 | EXTERN_DEVICE\ |
729 | -(void volatile) device_error | |
729 | +(void) device_error | |
730 | 730 | (device *me, |
731 | 731 | const char *fmt, |
732 | 732 | ...) __attribute__ ((format (printf, 2, 3))); |
@@ -22,6 +22,7 @@ | ||
22 | 22 | #define _HW_HTAB_C_ |
23 | 23 | |
24 | 24 | #include "device_table.h" |
25 | +#include "device.h" | |
25 | 26 | |
26 | 27 | #include "bfd.h" |
27 | 28 |
@@ -25,6 +25,8 @@ | ||
25 | 25 | #define STATIC_INLINE_HW_MEMORY STATIC_INLINE |
26 | 26 | #endif |
27 | 27 | |
28 | +#include <stdlib.h> | |
29 | + | |
28 | 30 | #include "device_table.h" |
29 | 31 | |
30 | 32 | /* DEVICE |