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
5d91fba7
Commit
5d91fba7
authored
Jul 05, 2002
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
USB: added product, manufacturer, and serial driverfs files for a device
parent
dcc98433
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
0 deletions
+70
-0
drivers/usb/core/usb.c
drivers/usb/core/usb.c
+70
-0
No files found.
drivers/usb/core/usb.c
View file @
5d91fba7
...
@@ -788,6 +788,70 @@ static struct driver_file_entry usb_altsetting_entry = {
...
@@ -788,6 +788,70 @@ static struct driver_file_entry usb_altsetting_entry = {
show:
show_altsetting
,
show:
show_altsetting
,
};
};
/* product driverfs file */
static
ssize_t
show_product
(
struct
device
*
dev
,
char
*
buf
,
size_t
count
,
loff_t
off
)
{
struct
usb_device
*
udev
;
int
len
;
if
(
off
)
return
0
;
udev
=
list_entry
(
dev
,
struct
usb_device
,
dev
);
len
=
usb_string
(
udev
,
udev
->
descriptor
.
iProduct
,
buf
,
PAGE_SIZE
);
buf
[
len
]
=
'\n'
;
buf
[
len
+
1
]
=
0x00
;
return
len
+
1
;
}
static
struct
driver_file_entry
usb_product_entry
=
{
name:
"product"
,
mode:
S_IRUGO
,
show:
show_product
,
};
/* manufacturer driverfs file */
static
ssize_t
show_manufacturer
(
struct
device
*
dev
,
char
*
buf
,
size_t
count
,
loff_t
off
)
{
struct
usb_device
*
udev
;
int
len
;
if
(
off
)
return
0
;
udev
=
list_entry
(
dev
,
struct
usb_device
,
dev
);
len
=
usb_string
(
udev
,
udev
->
descriptor
.
iManufacturer
,
buf
,
PAGE_SIZE
);
buf
[
len
]
=
'\n'
;
buf
[
len
+
1
]
=
0x00
;
return
len
+
1
;
}
static
struct
driver_file_entry
usb_manufacturer_entry
=
{
name:
"manufacturer"
,
mode:
S_IRUGO
,
show:
show_manufacturer
,
};
/* serial number driverfs file */
static
ssize_t
show_serial
(
struct
device
*
dev
,
char
*
buf
,
size_t
count
,
loff_t
off
)
{
struct
usb_device
*
udev
;
int
len
;
if
(
off
)
return
0
;
udev
=
list_entry
(
dev
,
struct
usb_device
,
dev
);
len
=
usb_string
(
udev
,
udev
->
descriptor
.
iSerialNumber
,
buf
,
PAGE_SIZE
);
buf
[
len
]
=
'\n'
;
buf
[
len
+
1
]
=
0x00
;
return
len
+
1
;
}
static
struct
driver_file_entry
usb_serial_entry
=
{
name:
"serial"
,
mode:
S_IRUGO
,
show:
show_serial
,
};
/*
/*
* This entrypoint gets called for each new device.
* This entrypoint gets called for each new device.
...
@@ -1319,6 +1383,12 @@ int usb_new_device(struct usb_device *dev)
...
@@ -1319,6 +1383,12 @@ int usb_new_device(struct usb_device *dev)
if
(
err
)
if
(
err
)
return
err
;
return
err
;
device_create_file
(
&
dev
->
dev
,
&
usb_config_entry
);
device_create_file
(
&
dev
->
dev
,
&
usb_config_entry
);
if
(
dev
->
descriptor
.
iManufacturer
)
device_create_file
(
&
dev
->
dev
,
&
usb_manufacturer_entry
);
if
(
dev
->
descriptor
.
iProduct
)
device_create_file
(
&
dev
->
dev
,
&
usb_product_entry
);
if
(
dev
->
descriptor
.
iSerialNumber
)
device_create_file
(
&
dev
->
dev
,
&
usb_serial_entry
);
/* now that the basic setup is over, add a /proc/bus/usb entry */
/* now that the basic setup is over, add a /proc/bus/usb entry */
usbfs_add_device
(
dev
);
usbfs_add_device
(
dev
);
...
...
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