diff options
author | David Mosberger-Tang <David.Mosberger@acm.org> | 2005-07-13 00:51:00 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-07-13 14:56:32 -0400 |
commit | f62c4a96f74d6c6dd56d1742697e94a5c2085e87 (patch) | |
tree | 488dc6db60c7c3e8ef10fd79f175cff1a5426a4c /drivers/firmware | |
parent | 59a0a8aa6ab6e46926e8d12694593267c0869440 (diff) |
[IA64] Make PCDP work again.
Mark's patch added "attribute((packed))" for pcdp_uart, without
accounting for the fact that the structure definition _relied_ on
implicit padding by 6 bytes. Fix is to make the padding explicit.
Signed-off-by: David Mosberger-Tang <David.Mosberger@acm.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/pcdp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/firmware/pcdp.h b/drivers/firmware/pcdp.h index e72cc47de33b..ce910d68bd19 100644 --- a/drivers/firmware/pcdp.h +++ b/drivers/firmware/pcdp.h | |||
@@ -52,6 +52,8 @@ struct pcdp_uart { | |||
52 | u32 clock_rate; | 52 | u32 clock_rate; |
53 | u8 pci_prog_intfc; | 53 | u8 pci_prog_intfc; |
54 | u8 flags; | 54 | u8 flags; |
55 | u16 conout_index; | ||
56 | u32 reserved; | ||
55 | } __attribute__((packed)); | 57 | } __attribute__((packed)); |
56 | 58 | ||
57 | #define PCDP_IF_PCI 1 | 59 | #define PCDP_IF_PCI 1 |