diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-12-01 04:49:58 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-01-03 06:30:08 -0500 |
commit | adf1b3d25e50dbab48fdd21006bea2dd5a4cb3a8 (patch) | |
tree | e520ddca1f0cd5e9bb9afd14f3f226e2b1596e9a /sound/pci/atiixp.c | |
parent | 8cb7b63f5baf7b5e788f0d632d5ebd018856416f (diff) |
[ALSA] Optimize for config without PROC_FS (pci drivers)
Optimize the code when compiled without CONFIG_PROC_FS for some pci drivers.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/atiixp.c')
-rw-r--r-- | sound/pci/atiixp.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/pci/atiixp.c b/sound/pci/atiixp.c index a039284c7c54..33e0664a1925 100644 --- a/sound/pci/atiixp.c +++ b/sound/pci/atiixp.c | |||
@@ -1477,6 +1477,7 @@ static int snd_atiixp_resume(struct pci_dev *pci) | |||
1477 | #endif /* CONFIG_PM */ | 1477 | #endif /* CONFIG_PM */ |
1478 | 1478 | ||
1479 | 1479 | ||
1480 | #ifdef CONFIG_PROC_FS | ||
1480 | /* | 1481 | /* |
1481 | * proc interface for register dump | 1482 | * proc interface for register dump |
1482 | */ | 1483 | */ |
@@ -1498,7 +1499,9 @@ static void __devinit snd_atiixp_proc_init(struct atiixp *chip) | |||
1498 | if (! snd_card_proc_new(chip->card, "atiixp", &entry)) | 1499 | if (! snd_card_proc_new(chip->card, "atiixp", &entry)) |
1499 | snd_info_set_text_ops(entry, chip, 1024, snd_atiixp_proc_read); | 1500 | snd_info_set_text_ops(entry, chip, 1024, snd_atiixp_proc_read); |
1500 | } | 1501 | } |
1501 | 1502 | #else /* !CONFIG_PROC_FS */ | |
1503 | #define snd_atiixp_proc_init(chip) | ||
1504 | #endif | ||
1502 | 1505 | ||
1503 | 1506 | ||
1504 | /* | 1507 | /* |