mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
1475241272
This patch adds the controller helper codes to hda-core library. The I/O access ops are added to the bus ops. The CORB/RIRB, the basic attributes like irq# and iomap address, some locks and the list of streams are added to the bus object, together with the stream object and its helpers. Currently the codes are just copied from the legacy driver, so you can find duplicated codes in both directories. Only constants are removed from the original hda_controller.h. More integration work will follow in the later patches. Signed-off-by: Takashi Iwai <tiwai@suse.de>
8 lines
234 B
Makefile
8 lines
234 B
Makefile
snd-hda-core-objs := hda_bus_type.o hdac_bus.o hdac_device.o hdac_sysfs.o \
|
|
hdac_regmap.o hdac_controller.o hdac_stream.o array.o
|
|
|
|
snd-hda-core-objs += trace.o
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
obj-$(CONFIG_SND_HDA_CORE) += snd-hda-core.o
|