Revision af9cc93c0dee5fc1f9fa32cd9d79a456738a21be authored by Takashi Iwai on 27 April 2016, 15:30:49 UTC, committed by Takashi Iwai on 27 April 2016, 15:30:49 UTC
ASoC: Fixes for v4.6

This is a fairly large collection of fixes but almost all driver
specific ones, especially to the new Intel drivers which have had a lot
of recent development.  The one core fix is a change to the debugfs code
to avoid crashes in some relatively unusual configurations.
2 parent s bb03ed2 + 8c0f551
Raw File
Makefile
ifneq ($(CONFIG_CONNECTOR),)
obj-m += cn_test.o
endif

# List of programs to build
hostprogs-y := ucon

# Tell kbuild to always build the programs
always := $(hostprogs-y)

HOSTCFLAGS_ucon.o += -I$(objtree)/usr/include

all: modules

modules clean:
	$(MAKE) -C ../.. SUBDIRS=$(PWD) $@
back to top