https://github.com/torvalds/linux
Revision 3ad001c04f1ad21b87a7648450b53e7f04194f2a authored by David Howells on 12 August 2010, 15:54:41 UTC, committed by Linus Torvalds on 12 August 2010, 16:51:35 UTC
With the newer compilers, size_t and ssize_t are expected to be (un)signed int
rather than (un)signed long.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 3557957
Raw File
Tip revision: 3ad001c04f1ad21b87a7648450b53e7f04194f2a authored by David Howells on 12 August 2010, 15:54:41 UTC
MN10300: Fix size_t and ssize_t
Tip revision: 3ad001c
Kconfig
#
# RF switch subsystem configuration
#
menuconfig RFKILL
	tristate "RF switch subsystem support"
	help
	  Say Y here if you want to have control over RF switches
	  found on many WiFi and Bluetooth cards.

	  To compile this driver as a module, choose M here: the
	  module will be called rfkill.

# LED trigger support
config RFKILL_LEDS
	bool
	depends on RFKILL
	depends on LEDS_TRIGGERS = y || RFKILL = LEDS_TRIGGERS
	default y

config RFKILL_INPUT
	bool "RF switch input support" if EMBEDDED
	depends on RFKILL
	depends on INPUT = y || RFKILL = INPUT
	default y if !EMBEDDED
back to top