From: Tasos Sahanidis Date: Wed, 29 Mar 2023 04:39:18 +0000 (+0300) Subject: ALSA: ymfpci: Use register macro in place of integer literal X-Git-Tag: v6.6.7~2882^2~61 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2fa98a4283c165715e6d36f5cd3acbc6f3c029f2;p=platform%2Fkernel%2Flinux-starfive.git ALSA: ymfpci: Use register macro in place of integer literal The macro for said register already exists, so just use it, to make the code more readable. Signed-off-by: Tasos Sahanidis Link: https://lore.kernel.org/r/20230329043918.179352-1-tasos@tasossah.com Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/ymfpci/ymfpci_main.c b/sound/pci/ymfpci/ymfpci_main.c index 92a0ac4..5f1a201 100644 --- a/sound/pci/ymfpci/ymfpci_main.c +++ b/sound/pci/ymfpci/ymfpci_main.c @@ -2214,7 +2214,7 @@ static void snd_ymfpci_free(struct snd_card *card) snd_ymfpci_free_gameport(chip); - pci_write_config_word(chip->pci, 0x40, chip->old_legacy_ctrl); + pci_write_config_word(chip->pci, PCIR_DSXG_LEGACY, chip->old_legacy_ctrl); release_firmware(chip->dsp_microcode); release_firmware(chip->controller_microcode);