79350f79d8
Resolves: #2137584,#2138081,#2141979
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From 35ec16bfef92d072edacad892fc138b3595ee69b Mon Sep 17 00:00:00 2001
|
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
|
Date: Thu, 3 Nov 2022 09:43:14 +0900
|
|
Subject: [PATCH] udev: drop redundant call of usb_id and assignment of
|
|
ID_USB_INTERFACE_NUM
|
|
|
|
The usb_id builtin command is already called in the above, and the
|
|
command sets the ID_USB_INTERFACE_NUM property.
|
|
|
|
(cherry picked from commit b2e53f5a0f12db65c88404477fedee5c57d201ba)
|
|
|
|
Related #2138081
|
|
---
|
|
rules.d/60-serial.rules | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/rules.d/60-serial.rules b/rules.d/60-serial.rules
|
|
index c133f26109..2c1488e930 100644
|
|
--- a/rules.d/60-serial.rules
|
|
+++ b/rules.d/60-serial.rules
|
|
@@ -17,9 +17,7 @@ IMPORT{builtin}="path_id"
|
|
ENV{ID_PATH}=="?*", ENV{.ID_PORT}=="", SYMLINK+="serial/by-path/$env{ID_PATH}"
|
|
ENV{ID_PATH}=="?*", ENV{.ID_PORT}=="?*", SYMLINK+="serial/by-path/$env{ID_PATH}-port$env{.ID_PORT}"
|
|
|
|
-IMPORT{builtin}="usb_id"
|
|
ENV{ID_SERIAL}=="", GOTO="serial_end"
|
|
-SUBSYSTEMS=="usb", ENV{ID_USB_INTERFACE_NUM}="$attr{bInterfaceNumber}"
|
|
ENV{ID_USB_INTERFACE_NUM}=="", GOTO="serial_end"
|
|
ENV{.ID_PORT}=="", SYMLINK+="serial/by-id/$env{ID_BUS}-$env{ID_SERIAL}-if$env{ID_USB_INTERFACE_NUM}"
|
|
ENV{.ID_PORT}=="?*", SYMLINK+="serial/by-id/$env{ID_BUS}-$env{ID_SERIAL}-if$env{ID_USB_INTERFACE_NUM}-port$env{.ID_PORT}"
|