Message ID | alpine.LFD.2.20.1605310910440.10899@localhost.localdomain (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Tue, 31 May 2016 15:12:04 +0200, Robert P. J. Day wrote: > > > include/uapi/sound/Kbuild was missing the inclusion of three header > files in that directory. > > Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Applied, thanks. Takashi > > --- > > diff --git a/include/uapi/sound/Kbuild b/include/uapi/sound/Kbuild > index a7f2770..691984c 100644 > --- a/include/uapi/sound/Kbuild > +++ b/include/uapi/sound/Kbuild > @@ -1,5 +1,6 @@ > # UAPI Header export list > header-y += asequencer.h > +header-y += asoc.h > header-y += asound.h > header-y += asound_fm.h > header-y += compress_offload.h > @@ -10,3 +11,5 @@ header-y += hdsp.h > header-y += hdspm.h > header-y += sb16_csp.h > header-y += sfnt_info.h > +header-y += tlv.h > +header-y += usb_stream.h > > -- > > ======================================================================== > Robert P. J. Day Ottawa, Ontario, CANADA > http://crashcourse.ca > > Twitter: http://twitter.com/rpjday > LinkedIn: http://ca.linkedin.com/in/rpjday > ======================================================================== > > _______________________________________________ > Alsa-devel mailing list > Alsa-devel@alsa-project.org > http://mailman.alsa-project.org/mailman/listinfo/alsa-devel >
diff --git a/include/uapi/sound/Kbuild b/include/uapi/sound/Kbuild index a7f2770..691984c 100644 --- a/include/uapi/sound/Kbuild +++ b/include/uapi/sound/Kbuild @@ -1,5 +1,6 @@ # UAPI Header export list header-y += asequencer.h +header-y += asoc.h header-y += asound.h header-y += asound_fm.h header-y += compress_offload.h @@ -10,3 +11,5 @@ header-y += hdsp.h header-y += hdspm.h header-y += sb16_csp.h header-y += sfnt_info.h +header-y += tlv.h +header-y += usb_stream.h
include/uapi/sound/Kbuild was missing the inclusion of three header files in that directory. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> ---