diff options
Diffstat (limited to 'include/serial.h')
-rw-r--r-- | include/serial.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/serial.h b/include/serial.h index a298a0b..5173499 100644 --- a/include/serial.h +++ b/include/serial.h @@ -3,10 +3,9 @@ #include <post.h> -#define NAMESIZE 16 - struct serial_device { - char name[NAMESIZE]; + /* enough bytes to match alignment of following func pointer */ + char name[16]; int (*init) (void); int (*uninit) (void); |