]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ALSA: hda - Merge codec and controller helpers
authorTakashi Iwai <tiwai@suse.de>
Tue, 14 Apr 2015 14:47:19 +0000 (16:47 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 16 Apr 2015 05:31:31 +0000 (07:31 +0200)
There is no much merit to keep the HD-audio codec and controller
helper codes in separate modules any longer.  Let's merge them into a
single helper module.

This patch just changes Makefile entries to merge two individual
modules to one.  The only code change is the removal of superfluous
MODULE_*() macros in one side.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/Makefile
sound/pci/hda/hda_controller.c

index af78fb33a4fd8d8319b33498f3240036050296d4..c5e6651efb49edf1d3236cdce07b1c7fbf3db738 100644 (file)
@@ -1,10 +1,10 @@
 snd-hda-intel-objs := hda_intel.o
-snd-hda-controller-objs := hda_controller.o
 snd-hda-tegra-objs := hda_tegra.o
 # for haswell power well
 snd-hda-intel-$(CONFIG_SND_HDA_I915) +=        hda_i915.o
 
 snd-hda-codec-y := hda_bind.o hda_codec.o hda_jack.o hda_auto_parser.o hda_sysfs.o
+snd-hda-codec-y += hda_controller.o
 snd-hda-codec-$(CONFIG_PROC_FS) += hda_proc.o
 snd-hda-codec-$(CONFIG_SND_HDA_HWDEP) += hda_hwdep.o
 snd-hda-codec-$(CONFIG_SND_HDA_INPUT_BEEP) += hda_beep.o
@@ -27,7 +27,6 @@ snd-hda-codec-hdmi-objs :=    patch_hdmi.o hda_eld.o
 
 # common driver
 obj-$(CONFIG_SND_HDA) := snd-hda-codec.o
-obj-$(CONFIG_SND_HDA) += snd-hda-controller.o
 
 # codec drivers
 obj-$(CONFIG_SND_HDA_GENERIC) += snd-hda-codec-generic.o
index b4474e27631d6ef932421c1263fda1db0aff6be9..6b39f2e8c8208b77887dc5980535e7688aa07715 100644 (file)
@@ -1966,6 +1966,3 @@ int azx_init_stream(struct azx *chip)
        return 0;
 }
 EXPORT_SYMBOL_GPL(azx_init_stream);
-
-MODULE_LICENSE("GPL");
-MODULE_DESCRIPTION("Common HDA driver functions");