• Arnd Bergmann's avatar
    ALSA: hda: tas2781: mark const variables as __maybe_unused · a2d6d8ae
    Arnd Bergmann authored
    An earlier patch changed the DECLARE_TLV_DB_SCALE declaration, but
    now there are additional static const variables that cause
    the same build warnings:
    
    In file included from sound/pci/hda/tas2781_hda_i2c.c:23:
    include/sound/tas2781-tlv.h:23:28: error: 'tas2563_dvc_table' defined but not used [-Werror=unused-const-variable=]
       23 | static const unsigned char tas2563_dvc_table[][4] = {
          |                            ^~~~~~~~~~~~~~~~~
    In file included from include/sound/tlv.h:10,
                     from sound/pci/hda/tas2781_hda_i2c.c:22:
    include/sound/tas2781-tlv.h:20:35: error: 'tas2563_dvc_tlv' defined but not used [-Werror=unused-const-variable=]
       20 | static const DECLARE_TLV_DB_SCALE(tas2563_dvc_tlv, -12150, 50, 1);
          |                                   ^~~~~~~~~~~~~~~
    
    Mark them all as unused as well.
    Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
    Link: https://patch.msgid.link/20240719095640.3741247-1-arnd@kernel.orgSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
    a2d6d8ae
tas2781-tlv.h 11.5 KB