From: Sami Kerola Date: Mon, 16 Oct 2017 18:15:44 +0000 (+0100) Subject: rfkill: fix description name typo X-Git-Tag: v2.31~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9e33cddd948958f07d4c9aa9f019f1c785c7b030;p=thirdparty%2Futil-linux.git rfkill: fix description name typo Commit 7d2a9960ad made gps to look like a GUID Partition Table. Reviewed-by: Karel Zak Signed-off-by: Sami Kerola --- diff --git a/sys-utils/rfkill.c b/sys-utils/rfkill.c index 6fa03c4031..c9559ef48e 100644 --- a/sys-utils/rfkill.c +++ b/sys-utils/rfkill.c @@ -63,7 +63,7 @@ static const struct rfkill_type_str rfkill_type_strings[] = { { .type = RFKILL_TYPE_UWB, .name = "ultrawideband" }, /* alias */ { .type = RFKILL_TYPE_WIMAX, .name = "wimax", .desc = "WiMAX" }, { .type = RFKILL_TYPE_WWAN, .name = "wwan", .desc = "Wireless WAN" }, - { .type = RFKILL_TYPE_GPS, .name = "gps", .desc = "GPT" }, + { .type = RFKILL_TYPE_GPS, .name = "gps", .desc = "GPS" }, { .type = RFKILL_TYPE_FM, .name = "fm", .desc = "FM" }, { .type = RFKILL_TYPE_NFC, .name = "nfc", .desc = "NFC" }, { .type = NUM_RFKILL_TYPES, .name = NULL }