diff options
| author | leo <leo@NetBSD.org> | 1995-06-09 19:47:30 +0000 |
|---|---|---|
| committer | leo <leo@NetBSD.org> | 1995-06-09 19:47:30 +0000 |
| commit | f8c615afc947bf04fe7aa189f672a60a747a8a18 (patch) | |
| tree | 700d2fdc420e91351638708a14db356c729d5243 /sys/arch/atari/include | |
| parent | 2644faf340fe37cbadeeb45e13c565098996bd19 (diff) | |
Make hardware locations u_char instead of char
Diffstat (limited to 'sys/arch/atari/include')
| -rw-r--r-- | sys/arch/atari/include/acia.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/atari/include/acia.h b/sys/arch/atari/include/acia.h index 62ee3d83a5a..870b900b2df 100644 --- a/sys/arch/atari/include/acia.h +++ b/sys/arch/atari/include/acia.h @@ -1,4 +1,4 @@ -/* $NetBSD: acia.h,v 1.2 1995/03/26 07:24:32 leo Exp $ */ +/* $NetBSD: acia.h,v 1.3 1995/06/09 19:47:30 leo Exp $ */ /* * Copyright (c) 1995 Leo Weppelman. @@ -41,7 +41,7 @@ #define MDI (((struct acia *)AD_ACIA) + 1) struct acia { - volatile char acb[4]; /* use only the even bytes */ + volatile u_char acb[4]; /* use only the even bytes */ }; #define ac_cs acb[0] /* control and status register */ |
