aboutsummaryrefslogtreecommitdiff
path: root/hid-tmt300rs.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-03-25 18:35:02 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2022-03-25 18:35:02 +0200
commit864a7c582518538c209f5d81043816b5e2696ca3 (patch)
treee25d62c26c64ed5d893efb6bfff40dcfab5967c8 /hid-tmt300rs.c
parentbb853865fce78d062186c808dc63fcfe12ebf195 (diff)
downloadhid-tmff2-864a7c582518538c209f5d81043816b5e2696ca3.tar.gz
hid-tmff2-864a7c582518538c209f5d81043816b5e2696ca3.zip
change 'native' to 'base'
Diffstat (limited to 'hid-tmt300rs.c')
-rw-r--r--hid-tmt300rs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hid-tmt300rs.c b/hid-tmt300rs.c
index c5b4655..2c44d1e 100644
--- a/hid-tmt300rs.c
+++ b/hid-tmt300rs.c
@@ -1199,7 +1199,7 @@ static struct t300rs_alt_modes {
char *label;
uint16_t mode;
} t300rs_modes[] = {
- {"native", "T300RS base", 0},
+ {"base", "T300RS base", 0},
{"F1", "T300RS with F1 wheel attachment", 1}
};
@@ -1212,7 +1212,7 @@ static ssize_t t300rs_alt_mode_show(void *data, char *buf)
return -ENODEV;
if (t300rs->attachment != T300RS_F1_ATTACHMENT)
- /* we only support one native mode */
+ /* we only support one base mode */
return scnprintf(buf, PAGE_SIZE, "%s: %s *\n",
t300rs_modes[0].id, t300rs_modes[0].label);