diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2024-01-16 12:21:03 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2024-01-16 12:21:03 +0000 |
commit | 321a598afd646cc8f7c14c827a9f8750bc150e50 (patch) | |
tree | dd07645881ee39e89dabf0af32dfde3aa2985a1f /sys | |
parent | 8bbd9aad0d5ce94b497bddf941680b1c460aa1aa (diff) |
Fix clang warning about possible unaligned access on arm64.
ok stsp@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_iwmreg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwmreg.h b/sys/dev/pci/if_iwmreg.h index af10511b10d..2d6fab53212 100644 --- a/sys/dev/pci/if_iwmreg.h +++ b/sys/dev/pci/if_iwmreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_iwmreg.h,v 1.68 2022/03/19 10:26:52 stsp Exp $ */ +/* $OpenBSD: if_iwmreg.h,v 1.69 2024/01/16 12:21:02 kevlo Exp $ */ /****************************************************************************** * @@ -3361,7 +3361,7 @@ struct iwm_rx_mpdu_desc_v1 { uint32_t phy_data0; uint32_t phy_data1; }; - }; + } __packed; } __packed; #define IWM_RX_REORDER_DATA_INVALID_BAID 0x7f |