* [PATCH 0/5] randconfig build fixes for staging
@ 2014-06-05 20:48 Arnd Bergmann
2014-06-05 20:48 ` [PATCH 2/5] staging/iio: IIO_SIMPLE_DUMMY_BUFFER neds IIO_BUFFER Arnd Bergmann
0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2014-06-05 20:48 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: devel, linux-arm-kernel, linux-kernel, Arnd Bergmann,
Florian Schilhabel, Henk de Groot, Jarod Wilson, Jonathan Cameron,
Larry Finger, Luca Risolia, Mauro Carvalho Chehab,
Tuomas Tynkkynen, linux-iio, linux-media, linux-usb
Hi Greg,
Here are a couple of simple fixes from my backlog of ARM
randconfig bugs. Nothing urgent, they can probably all go
into next for 3.17 after the merge window, but see for
yourself.
Arnd
Arnd Bergmann (5):
staging: lirc: remove sa1100 support
staging/iio: IIO_SIMPLE_DUMMY_BUFFER neds IIO_BUFFER
staging: sn9c102 depends on USB
staging: wlags49_h2: avoid PROFILE_ALL_BRANCHES warnings
staging: rtl8712, rtl8712: avoid lots of build warnings
drivers/staging/iio/Kconfig | 9 +-
drivers/staging/media/lirc/lirc_sir.c | 301 +------------------------
drivers/staging/media/sn9c102/Kconfig | 2 +-
drivers/staging/rtl8192u/ieee80211/ieee80211.h | 10 +-
drivers/staging/rtl8712/ieee80211.h | 4 +-
drivers/staging/wlags49_h2/wl_internal.h | 4 +-
6 files changed, 17 insertions(+), 313 deletions(-)
--
1.8.3.2
Cc: Florian Schilhabel <florian.c.schilhabel@googlemail.com>
Cc: Henk de Groot <pe1dnn@amsat.org>
Cc: Jarod Wilson <jarod@wilsonet.com>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Luca Risolia <luca.risolia@studio.unibo.it>
Cc: Mauro Carvalho Chehab <m.chehab@samsung.com>
Cc: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
Cc: linux-iio@vger.kernel.org
Cc: linux-media@vger.kernel.org
Cc: linux-usb@vger.kernel.org
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 2/5] staging/iio: IIO_SIMPLE_DUMMY_BUFFER neds IIO_BUFFER
2014-06-05 20:48 [PATCH 0/5] randconfig build fixes for staging Arnd Bergmann
@ 2014-06-05 20:48 ` Arnd Bergmann
2014-06-07 10:46 ` Jonathan Cameron
0 siblings, 1 reply; 3+ messages in thread
From: Arnd Bergmann @ 2014-06-05 20:48 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: devel, linux-arm-kernel, linux-kernel, Arnd Bergmann,
Jonathan Cameron, linux-iio
An obviously missing 'select' statement, without this we
get a link error
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: linux-iio@vger.kernel.org
---
drivers/staging/iio/Kconfig | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/iio/Kconfig b/drivers/staging/iio/Kconfig
index b36feb0..fa38be0 100644
--- a/drivers/staging/iio/Kconfig
+++ b/drivers/staging/iio/Kconfig
@@ -36,10 +36,11 @@ config IIO_SIMPLE_DUMMY_EVENTS
Add some dummy events to the simple dummy driver.
config IIO_SIMPLE_DUMMY_BUFFER
- boolean "Buffered capture support"
- select IIO_KFIFO_BUF
- help
- Add buffered data capture to the simple dummy driver.
+ boolean "Buffered capture support"
+ select IIO_BUFFER
+ select IIO_KFIFO_BUF
+ help
+ Add buffered data capture to the simple dummy driver.
endif # IIO_SIMPLE_DUMMY
--
1.8.3.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 2/5] staging/iio: IIO_SIMPLE_DUMMY_BUFFER neds IIO_BUFFER
2014-06-05 20:48 ` [PATCH 2/5] staging/iio: IIO_SIMPLE_DUMMY_BUFFER neds IIO_BUFFER Arnd Bergmann
@ 2014-06-07 10:46 ` Jonathan Cameron
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2014-06-07 10:46 UTC (permalink / raw)
To: Arnd Bergmann, Greg Kroah-Hartman
Cc: devel, linux-arm-kernel, linux-kernel, linux-iio
On 05/06/14 21:48, Arnd Bergmann wrote:
> An obviously missing 'select' statement, without this we
> get a link error
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Cc: Jonathan Cameron <jic23@kernel.org>
> Cc: linux-iio@vger.kernel.org
Applied to the fixes-togreg branch of iio.git
Thanks,
Jonathan
> ---
> drivers/staging/iio/Kconfig | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/staging/iio/Kconfig b/drivers/staging/iio/Kconfig
> index b36feb0..fa38be0 100644
> --- a/drivers/staging/iio/Kconfig
> +++ b/drivers/staging/iio/Kconfig
> @@ -36,10 +36,11 @@ config IIO_SIMPLE_DUMMY_EVENTS
> Add some dummy events to the simple dummy driver.
>
> config IIO_SIMPLE_DUMMY_BUFFER
> - boolean "Buffered capture support"
> - select IIO_KFIFO_BUF
> - help
> - Add buffered data capture to the simple dummy driver.
> + boolean "Buffered capture support"
> + select IIO_BUFFER
> + select IIO_KFIFO_BUF
> + help
> + Add buffered data capture to the simple dummy driver.
>
> endif # IIO_SIMPLE_DUMMY
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-06-07 10:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-05 20:48 [PATCH 0/5] randconfig build fixes for staging Arnd Bergmann
2014-06-05 20:48 ` [PATCH 2/5] staging/iio: IIO_SIMPLE_DUMMY_BUFFER neds IIO_BUFFER Arnd Bergmann
2014-06-07 10:46 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).