summaryrefslogtreecommitdiffstats
path: root/drivers/char/tpm/tpm_acpi.c
diff options
context:
space:
mode:
authorJason Gunthorpe2012-11-21 21:56:45 +0100
committerKent Yoder2013-02-05 16:38:22 +0100
commit348df8db301d9fa01fb51e5eaca1e9f3b27bd4c8 (patch)
tree560d7a6574e520ea9e9e232abce80cfb96e88142 /drivers/char/tpm/tpm_acpi.c
parentTPM: Issue TPM_STARTUP at driver load if the TPM has not been started (diff)
downloadkernel-qcow2-linux-348df8db301d9fa01fb51e5eaca1e9f3b27bd4c8.tar.gz
kernel-qcow2-linux-348df8db301d9fa01fb51e5eaca1e9f3b27bd4c8.tar.xz
kernel-qcow2-linux-348df8db301d9fa01fb51e5eaca1e9f3b27bd4c8.zip
TPM: Switch to __packed instead of __attribute__((packed))
This seems to be preferred these days. Signed-off-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> Reviewed-by: Peter Huewe <peterhuewe@gmx.de> Signed-off-by: Kent Yoder <key@linux.vnet.ibm.com>
Diffstat (limited to 'drivers/char/tpm/tpm_acpi.c')
-rw-r--r--drivers/char/tpm/tpm_acpi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/char/tpm/tpm_acpi.c b/drivers/char/tpm/tpm_acpi.c
index 56051d0c97a2..64420b3396a2 100644
--- a/drivers/char/tpm/tpm_acpi.c
+++ b/drivers/char/tpm/tpm_acpi.c
@@ -33,13 +33,13 @@ struct acpi_tcpa {
u16 platform_class;
union {
struct client_hdr {
- u32 log_max_len __attribute__ ((packed));
- u64 log_start_addr __attribute__ ((packed));
+ u32 log_max_len __packed;
+ u64 log_start_addr __packed;
} client;
struct server_hdr {
u16 reserved;
- u64 log_max_len __attribute__ ((packed));
- u64 log_start_addr __attribute__ ((packed));
+ u64 log_max_len __packed;
+ u64 log_start_addr __packed;
} server;
};
};