diff options
author | Fabian Frederick <fabf@skynet.be> | 2016-11-12 09:28:33 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-11-12 10:11:36 +0100 |
commit | db0717da2a74faf7694cdfe1e591425e84ae7504 (patch) | |
tree | 3691759f640880266865ccd881d3680a971547ab /sound/drivers | |
parent | 7f084afa525f450d200a7de86ab99eadcd87370f (diff) | |
download | op-kernel-dev-db0717da2a74faf7694cdfe1e591425e84ae7504.zip op-kernel-dev-db0717da2a74faf7694cdfe1e591425e84ae7504.tar.gz |
ALSA: opl3: don't opencode IS_REACHABLE()
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/drivers')
-rw-r--r-- | sound/drivers/opl3/opl3_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/drivers/opl3/opl3_lib.c b/sound/drivers/opl3/opl3_lib.c index 369cef2..cd9e9f3 100644 --- a/sound/drivers/opl3/opl3_lib.c +++ b/sound/drivers/opl3/opl3_lib.c @@ -528,7 +528,7 @@ int snd_opl3_hwdep_new(struct snd_opl3 * opl3, opl3->hwdep = hw; opl3->seq_dev_num = seq_device; -#if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE)) +#if IS_REACHABLE(CONFIG_SND_SEQUENCER) if (snd_seq_device_new(card, seq_device, SNDRV_SEQ_DEV_ID_OPL3, sizeof(struct snd_opl3 *), &opl3->seq_dev) >= 0) { strcpy(opl3->seq_dev->name, hw->name); |