From: Zbigniew Jędrzejewski-Szmek Date: Thu, 16 Jul 2020 09:40:53 +0000 (+0200) Subject: hwdb/autosuspend: add missing parenthesis X-Git-Tag: v246-rc2~51^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19b4864346f42b52b9aaacf5fcafb6fb5001281c;p=thirdparty%2Fsystemd.git hwdb/autosuspend: add missing parenthesis --- diff --git a/tools/make-autosuspend-rules.py b/tools/make-autosuspend-rules.py index e13ca33f6fc..a20edc0f341 100755 --- a/tools/make-autosuspend-rules.py +++ b/tools/make-autosuspend-rules.py @@ -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:vp (4 uppercase hexadecimal digits twice') +print('# usb:vp (4 uppercase hexadecimal digits twice)') for entry in chromiumos.gen_autosuspend_rules.USB_IDS: vendor, product = entry.split(':') vendor = int(vendor, 16)