diff options
author | Takashi Iwai <tiwai@suse.de> | 2023-10-25 15:23:11 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2023-10-26 09:43:15 +0200 |
commit | 9ffbedf07d556af1203dd8d5fc28b59a0563a49f (patch) | |
tree | aa21835ee62eaec72d6b354a4dfdcb0727a12d29 /include/sound | |
parent | ALSA: aoa: Replace with __packed attribute (diff) | |
download | linux-9ffbedf07d556af1203dd8d5fc28b59a0563a49f.tar.xz linux-9ffbedf07d556af1203dd8d5fc28b59a0563a49f.zip |
ALSA: opl3: Replace with __packed attribute
Replace the old __attribute__((packed)) with the new __packed.
Only cleanup, no functional changes.
Link: https://lore.kernel.org/r/20231025132314.5878-9-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/opl3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/opl3.h b/include/sound/opl3.h index ebf3852da9fe..052395a2f876 100644 --- a/include/sound/opl3.h +++ b/include/sound/opl3.h @@ -229,7 +229,7 @@ struct fm_operator { unsigned char attack_decay; unsigned char sustain_release; unsigned char wave_select; -} __attribute__((packed)); +} __packed; /* Instrument data */ struct fm_instrument { |