aboutsummaryrefslogtreecommitdiff
path: root/hid-tmt300rs.c
diff options
context:
space:
mode:
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);