Commit 44b3decb authored by Samuel Ortiz's avatar Samuel Ortiz

rfkill: Add NFC to the list of supported radios

And return the proper string for it.
Acked-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Acked-by: default avatarMarcel Holtmann <marcel@holtmann.org>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent 60d9edd5
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
* @RFKILL_TYPE_WWAN: switch is on a wireless WAN device. * @RFKILL_TYPE_WWAN: switch is on a wireless WAN device.
* @RFKILL_TYPE_GPS: switch is on a GPS device. * @RFKILL_TYPE_GPS: switch is on a GPS device.
* @RFKILL_TYPE_FM: switch is on a FM radio device. * @RFKILL_TYPE_FM: switch is on a FM radio device.
* @RFKILL_TYPE_NFC: switch is on an NFC device.
* @NUM_RFKILL_TYPES: number of defined rfkill types * @NUM_RFKILL_TYPES: number of defined rfkill types
*/ */
enum rfkill_type { enum rfkill_type {
...@@ -48,6 +49,7 @@ enum rfkill_type { ...@@ -48,6 +49,7 @@ enum rfkill_type {
RFKILL_TYPE_WWAN, RFKILL_TYPE_WWAN,
RFKILL_TYPE_GPS, RFKILL_TYPE_GPS,
RFKILL_TYPE_FM, RFKILL_TYPE_FM,
RFKILL_TYPE_NFC,
NUM_RFKILL_TYPES, NUM_RFKILL_TYPES,
}; };
......
...@@ -587,7 +587,7 @@ static ssize_t rfkill_name_show(struct device *dev, ...@@ -587,7 +587,7 @@ static ssize_t rfkill_name_show(struct device *dev,
static const char *rfkill_get_type_str(enum rfkill_type type) static const char *rfkill_get_type_str(enum rfkill_type type)
{ {
BUILD_BUG_ON(NUM_RFKILL_TYPES != RFKILL_TYPE_FM + 1); BUILD_BUG_ON(NUM_RFKILL_TYPES != RFKILL_TYPE_NFC + 1);
switch (type) { switch (type) {
case RFKILL_TYPE_WLAN: case RFKILL_TYPE_WLAN:
...@@ -604,6 +604,8 @@ static const char *rfkill_get_type_str(enum rfkill_type type) ...@@ -604,6 +604,8 @@ static const char *rfkill_get_type_str(enum rfkill_type type)
return "gps"; return "gps";
case RFKILL_TYPE_FM: case RFKILL_TYPE_FM:
return "fm"; return "fm";
case RFKILL_TYPE_NFC:
return "nfc";
default: default:
BUG(); BUG();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment