]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
hwdb/autosuspend: add missing parenthesis
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 16 Jul 2020 09:40:53 +0000 (11:40 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 16 Jul 2020 16:06:35 +0000 (18:06 +0200)
tools/make-autosuspend-rules.py

index e13ca33f6fc5fcb2cff17aa6d872085717b8c387..a20edc0f341d673534c828d03f732f4b2dff5469 100755 (executable)
@@ -14,7 +14,7 @@ for entry in chromiumos.gen_autosuspend_rules.PCI_IDS:
     device = int(device, 16)
     print('pci:v{:08X}d{:08X}*'.format(vendor, device))
 
-print('# usb:v<VEND>p<PROD> (4 uppercase hexadecimal digits twice')
+print('# usb:v<VEND>p<PROD> (4 uppercase hexadecimal digits twice)')
 for entry in chromiumos.gen_autosuspend_rules.USB_IDS:
     vendor, product = entry.split(':')
     vendor = int(vendor, 16)