diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-12-29 21:40:22 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-12-29 21:40:22 +0000 |
commit | f7fd4b7e9daeb064c16747d7a2f2e804241d9150 (patch) | |
tree | a328f872c788bb51a6ccd796c974d7a5e51e7ff9 /sys/arch | |
parent | b9fe08a75e98e5d54cbce52ff5dab20e254fbc81 (diff) |
utilize PDC_ALIGNMENT
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/dev/pdc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/dev/pdc.c b/sys/arch/hppa/dev/pdc.c index 4aaa73ce692..bee49f3b640 100644 --- a/sys/arch/hppa/dev/pdc.c +++ b/sys/arch/hppa/dev/pdc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pdc.c,v 1.4 1998/11/23 02:58:11 mickey Exp $ */ +/* $OpenBSD: pdc.c,v 1.5 1998/12/29 21:40:21 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -53,8 +53,8 @@ struct pdc_softc { } pdcsoftc_t; pdcio_t pdc; -int pdcret[32] __attribute__ ((aligned(8))); -char pdc_consbuf[MINIOSIZ] __attribute__ ((aligned(MINIOSIZ))); +int pdcret[32] PDC_ALIGNMENT; +char pdc_consbuf[MINIOSIZ] PDC_ALIGNMENT; iodcio_t pdc_cniodc, pdc_kbdiodc; pz_device_t *pz_kbd, *pz_cons; struct tty *pdc_tty[1]; |