diff options
author | peter <peter@FreeBSD.org> | 2003-07-26 03:47:56 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-07-26 03:47:56 +0000 |
commit | a70eae2ee9a11136013c9341b22d77eb13115ec0 (patch) | |
tree | 93a3b6087f927c6b6c7a773f63d3de165cff2c61 | |
parent | bde00e70d9fccc18fb46f854c91d9d5a98d7805c (diff) | |
download | FreeBSD-src-a70eae2ee9a11136013c9341b22d77eb13115ec0.zip FreeBSD-src-a70eae2ee9a11136013c9341b22d77eb13115ec0.tar.gz |
Fix some recently introduced warnings. 'Declaration does not declare
anything' etc.
-rw-r--r-- | sys/dev/firewire/fwohcireg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/firewire/fwohcireg.h b/sys/dev/firewire/fwohcireg.h index 7ce2087..ba81bb7 100644 --- a/sys/dev/firewire/fwohcireg.h +++ b/sys/dev/firewire/fwohcireg.h @@ -287,7 +287,7 @@ struct ohci_registers { fwohcireg_t dummy1; fwohcireg_t dummy2; fwohcireg_t dummy3; - }; + } dummy8; /* 0x180, 0x184, 0x188, 0x18c */ /* 0x190, 0x194, 0x198, 0x19c */ /* 0x1a0, 0x1a4, 0x1a8, 0x1ac */ @@ -305,7 +305,7 @@ struct ohci_registers { fwohcireg_t cntl_clr; fwohcireg_t dummy0; fwohcireg_t cmd; - }; + } dummy9; struct ohci_itdma dma_itch[0x20]; /* 0x400, 0x404, 0x408, 0x40c */ |