ALSA: echoaudio: Drop superfluous macro
authorTakashi Iwai <tiwai@suse.de>
Thu, 24 May 2018 09:20:06 +0000 (11:20 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 24 May 2018 09:23:02 +0000 (11:23 +0200)
Drop pci_device() macro that just leads to chip->pci->dev, and pass it
directly to request_firmware().  It was introduced for allowing the
external alsa-driver kernel module builds.  Since it was discontinued
years ago, we should clean it up now.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/echoaudio/echoaudio.c
sound/pci/echoaudio/echoaudio.h

index 0935a5c..358ef7d 100644 (file)
@@ -59,7 +59,7 @@ static int get_firmware(const struct firmware **fw_entry,
        dev_dbg(chip->card->dev,
                "firmware requested: %s\n", card_fw[fw_index].data);
        snprintf(name, sizeof(name), "ea/%s", card_fw[fw_index].data);
-       err = request_firmware(fw_entry, name, pci_device(chip));
+       err = request_firmware(fw_entry, name, &chip->pci->dev);
        if (err < 0)
                dev_err(chip->card->dev,
                        "get_firmware(): Firmware not available (%d)\n", err);
index 152ce15..44b390a 100644 (file)
@@ -559,10 +559,4 @@ static inline int monitor_index(const struct echoaudio *chip, int out, int in)
        return out * num_busses_in(chip) + in;
 }
 
-
-#ifndef pci_device
-#define pci_device(chip) (&chip->pci->dev)
-#endif
-
-
 #endif /* _ECHOAUDIO_H_ */