You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.1 KiB
28 lines
1.1 KiB
2 years ago
|
From 3821f3570e28a6f169bf539086882b34a6a7beb8 Mon Sep 17 00:00:00 2001
|
||
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
||
|
Date: Fri, 28 Jan 2022 11:08:43 +0900
|
||
|
Subject: [PATCH] test: frequency in mouse DPI is optional
|
||
|
|
||
|
Prompted by #22278.
|
||
|
|
||
|
(cherry picked from commit e912326e05cf753ddb703be0666336ee3386d6e0)
|
||
|
|
||
|
Related: #2087778
|
||
|
---
|
||
|
hwdb.d/parse_hwdb.py | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/hwdb.d/parse_hwdb.py b/hwdb.d/parse_hwdb.py
|
||
|
index 0268bf9580..aef0331ace 100755
|
||
|
--- a/hwdb.d/parse_hwdb.py
|
||
|
+++ b/hwdb.d/parse_hwdb.py
|
||
|
@@ -121,7 +121,7 @@ def hwdb_grammar():
|
||
|
def property_grammar():
|
||
|
ParserElement.setDefaultWhitespaceChars(' ')
|
||
|
|
||
|
- dpi_setting = Group(Optional('*')('DEFAULT') + INTEGER('DPI') + Suppress('@') + INTEGER('HZ'))('SETTINGS*')
|
||
|
+ dpi_setting = Group(Optional('*')('DEFAULT') + INTEGER('DPI') + Optional(Suppress('@') + INTEGER('HZ')))('SETTINGS*')
|
||
|
mount_matrix_row = SIGNED_REAL + ',' + SIGNED_REAL + ',' + SIGNED_REAL
|
||
|
mount_matrix = Group(mount_matrix_row + ';' + mount_matrix_row + ';' + mount_matrix_row)('MOUNT_MATRIX')
|
||
|
xkb_setting = Optional(Word(alphanums + '+-/@._'))
|