Skip to content

Commit d35a466

Browse files
committed
HID: core: Handle HOST bus type when announcing devices
Signed-off-by: Hector Martin <[email protected]>
1 parent f6146b2 commit d35a466

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

drivers/hid/hid-core.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2245,6 +2245,9 @@ int hid_connect(struct hid_device *hdev, unsigned int connect_mask)
22452245
case BUS_SPI:
22462246
bus = "SPI";
22472247
break;
2248+
case BUS_HOST:
2249+
bus = "HOST";
2250+
break;
22482251
case BUS_VIRTUAL:
22492252
bus = "VIRTUAL";
22502253
break;

0 commit comments

Comments
 (0)