Message ID | 20231025132314.5878-9-tiwai@suse.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 9ffbedf07d556af1203dd8d5fc28b59a0563a49f |
Headers | show |
Series | ALSA: Replace with __packed attribute | expand |
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 {
Replace the old __attribute__((packed)) with the new __packed. Only cleanup, no functional changes. Signed-off-by: Takashi Iwai <tiwai@suse.de> --- include/sound/opl3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)