Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
13838748
Commit
13838748
authored
May 02, 2002
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
328494ef
6d512856
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/usb/input/hid-core.c
drivers/usb/input/hid-core.c
+1
-1
No files found.
drivers/usb/input/hid-core.c
View file @
13838748
...
...
@@ -1398,7 +1398,7 @@ static struct hid_device *usb_hid_configure(struct usb_device *dev, int ifnum)
if
(
usb_string
(
dev
,
dev
->
descriptor
.
iProduct
,
buf
,
64
)
>
0
)
snprintf
(
hid
->
name
,
64
,
"%s %s"
,
hid
->
name
,
buf
);
}
else
snprintf
(
hid
->
name
,
64
,
"%04x:%04x"
,
dev
->
descriptor
.
idVendor
,
dev
->
descriptor
.
idProduct
);
snprintf
(
hid
->
name
,
128
,
"%04x:%04x"
,
dev
->
descriptor
.
idVendor
,
dev
->
descriptor
.
idProduct
);
usb_make_path
(
dev
,
buf
,
64
);
snprintf
(
hid
->
phys
,
64
,
"%s/input%d"
,
buf
,
ifnum
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment