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
93ef8026
Commit
93ef8026
authored
Sep 16, 2002
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
USB: convert the drivers/usb/storage files to the new USB driver model.
parent
4e37e73e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
21 deletions
+21
-21
drivers/usb/storage/scsiglue.c
drivers/usb/storage/scsiglue.c
+2
-6
drivers/usb/storage/usb.c
drivers/usb/storage/usb.c
+19
-15
No files found.
drivers/usb/storage/scsiglue.c
View file @
93ef8026
...
@@ -252,7 +252,6 @@ static int bus_reset( Scsi_Cmnd *srb )
...
@@ -252,7 +252,6 @@ static int bus_reset( Scsi_Cmnd *srb )
for
(
i
=
0
;
i
<
pusb_dev_save
->
actconfig
->
bNumInterfaces
;
i
++
)
{
for
(
i
=
0
;
i
<
pusb_dev_save
->
actconfig
->
bNumInterfaces
;
i
++
)
{
struct
usb_interface
*
intf
=
struct
usb_interface
*
intf
=
&
pusb_dev_save
->
actconfig
->
interface
[
i
];
&
pusb_dev_save
->
actconfig
->
interface
[
i
];
const
struct
usb_device_id
*
id
;
/* if this is an unclaimed interface, skip it */
/* if this is an unclaimed interface, skip it */
if
(
!
intf
->
driver
)
{
if
(
!
intf
->
driver
)
{
...
@@ -263,11 +262,8 @@ static int bus_reset( Scsi_Cmnd *srb )
...
@@ -263,11 +262,8 @@ static int bus_reset( Scsi_Cmnd *srb )
/* simulate a disconnect and reconnect for all interfaces */
/* simulate a disconnect and reconnect for all interfaces */
US_DEBUGPX
(
"simulating disconnect/reconnect.
\n
"
);
US_DEBUGPX
(
"simulating disconnect/reconnect.
\n
"
);
down
(
&
intf
->
driver
->
serialize
);
usb_device_remove
(
&
intf
->
dev
);
intf
->
driver
->
disconnect
(
pusb_dev_save
,
intf
->
private_data
);
usb_device_probe
(
&
intf
->
dev
);
id
=
usb_match_id
(
intf
,
intf
->
driver
->
id_table
);
intf
->
driver
->
probe
(
pusb_dev_save
,
i
,
id
);
up
(
&
intf
->
driver
->
serialize
);
}
}
US_DEBUGP
(
"bus_reset() complete
\n
"
);
US_DEBUGP
(
"bus_reset() complete
\n
"
);
scsi_lock
(
srb
->
host
);
scsi_lock
(
srb
->
host
);
...
...
drivers/usb/storage/usb.c
View file @
93ef8026
...
@@ -103,10 +103,10 @@ static int my_host_number;
...
@@ -103,10 +103,10 @@ static int my_host_number;
struct
us_data
*
us_list
;
struct
us_data
*
us_list
;
struct
semaphore
us_list_semaphore
;
struct
semaphore
us_list_semaphore
;
static
void
*
storage_probe
(
struct
usb_device
*
dev
,
unsigned
int
ifnum
,
static
int
storage_probe
(
struct
usb_interface
*
iface
,
const
struct
usb_device_id
*
id
);
const
struct
usb_device_id
*
id
);
static
void
storage_disconnect
(
struct
usb_
device
*
dev
,
void
*
ptr
);
static
void
storage_disconnect
(
struct
usb_
interface
*
iface
);
/* The entries in this table, except for final ones here
/* The entries in this table, except for final ones here
* (USB_MASS_STORAGE_CLASS and the empty entry), correspond,
* (USB_MASS_STORAGE_CLASS and the empty entry), correspond,
...
@@ -623,9 +623,11 @@ static void usb_stor_deallocate_urbs(struct us_data *ss)
...
@@ -623,9 +623,11 @@ static void usb_stor_deallocate_urbs(struct us_data *ss)
}
}
/* Probe to see if a new device is actually a SCSI device */
/* Probe to see if a new device is actually a SCSI device */
static
void
*
storage_probe
(
struct
usb_device
*
dev
,
unsigned
int
ifnum
,
static
int
storage_probe
(
struct
usb_interface
*
intf
,
const
struct
usb_device_id
*
id
)
const
struct
usb_device_id
*
id
)
{
{
struct
usb_device
*
dev
=
interface_to_usbdev
(
intf
);
int
ifnum
=
intf
->
altsetting
->
bInterfaceNumber
;
int
i
;
int
i
;
const
int
id_index
=
id
-
storage_usb_ids
;
const
int
id_index
=
id
-
storage_usb_ids
;
char
mf
[
USB_STOR_STRING_LEN
];
/* manufacturer */
char
mf
[
USB_STOR_STRING_LEN
];
/* manufacturer */
...
@@ -650,7 +652,6 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
...
@@ -650,7 +652,6 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
/* the altsetting on the interface we're probing that matched our
/* the altsetting on the interface we're probing that matched our
* usb_match_id table
* usb_match_id table
*/
*/
struct
usb_interface
*
intf
=
dev
->
actconfig
->
interface
;
struct
usb_interface_descriptor
*
altsetting
=
struct
usb_interface_descriptor
*
altsetting
=
intf
[
ifnum
].
altsetting
+
intf
[
ifnum
].
act_altsetting
;
intf
[
ifnum
].
altsetting
+
intf
[
ifnum
].
act_altsetting
;
US_DEBUGP
(
"act_altsetting is %d
\n
"
,
intf
[
ifnum
].
act_altsetting
);
US_DEBUGP
(
"act_altsetting is %d
\n
"
,
intf
[
ifnum
].
act_altsetting
);
...
@@ -680,7 +681,7 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
...
@@ -680,7 +681,7 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
US_DEBUGP
(
"Product: %s
\n
"
,
unusual_dev
->
productName
);
US_DEBUGP
(
"Product: %s
\n
"
,
unusual_dev
->
productName
);
}
else
}
else
/* no, we can't support it */
/* no, we can't support it */
return
NULL
;
return
-
EIO
;
/* At this point, we know we've got a live one */
/* At this point, we know we've got a live one */
US_DEBUGP
(
"USB Mass Storage device detected
\n
"
);
US_DEBUGP
(
"USB Mass Storage device detected
\n
"
);
...
@@ -728,7 +729,7 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
...
@@ -728,7 +729,7 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
}
else
if
(
result
!=
0
)
{
}
else
if
(
result
!=
0
)
{
/* it's not a stall, but another error -- time to bail */
/* it's not a stall, but another error -- time to bail */
US_DEBUGP
(
"-- Unknown error. Rejecting device
\n
"
);
US_DEBUGP
(
"-- Unknown error. Rejecting device
\n
"
);
return
NULL
;
return
-
EIO
;
}
}
}
}
#endif
#endif
...
@@ -736,7 +737,7 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
...
@@ -736,7 +737,7 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
/* Do some basic sanity checks, and bail if we find a problem */
/* Do some basic sanity checks, and bail if we find a problem */
if
(
!
ep_in
||
!
ep_out
||
(
protocol
==
US_PR_CBI
&&
!
ep_int
))
{
if
(
!
ep_in
||
!
ep_out
||
(
protocol
==
US_PR_CBI
&&
!
ep_int
))
{
US_DEBUGP
(
"Endpoint sanity check failed! Rejecting dev.
\n
"
);
US_DEBUGP
(
"Endpoint sanity check failed! Rejecting dev.
\n
"
);
return
NULL
;
return
-
EIO
;
}
}
/* At this point, we've decided to try to use the device */
/* At this point, we've decided to try to use the device */
...
@@ -815,7 +816,7 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
...
@@ -815,7 +816,7 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
GFP_KERNEL
))
==
NULL
)
{
GFP_KERNEL
))
==
NULL
)
{
printk
(
KERN_WARNING
USB_STORAGE
"Out of memory
\n
"
);
printk
(
KERN_WARNING
USB_STORAGE
"Out of memory
\n
"
);
usb_put_dev
(
dev
);
usb_put_dev
(
dev
);
return
NULL
;
return
-
ENOMEM
;
}
}
memset
(
ss
,
0
,
sizeof
(
struct
us_data
));
memset
(
ss
,
0
,
sizeof
(
struct
us_data
));
new_device
=
1
;
new_device
=
1
;
...
@@ -1091,8 +1092,9 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
...
@@ -1091,8 +1092,9 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
printk
(
KERN_DEBUG
printk
(
KERN_DEBUG
"USB Mass Storage device found at %d
\n
"
,
dev
->
devnum
);
"USB Mass Storage device found at %d
\n
"
,
dev
->
devnum
);
/* return a pointer for the disconnect function */
/* save a pointer to our structure */
return
ss
;
dev_set_drvdata
(
&
intf
->
dev
,
ss
);
return
0
;
/* we come here if there are any problems */
/* we come here if there are any problems */
/* ss->dev_semaphore must be locked */
/* ss->dev_semaphore must be locked */
...
@@ -1102,16 +1104,18 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
...
@@ -1102,16 +1104,18 @@ static void * storage_probe(struct usb_device *dev, unsigned int ifnum,
up
(
&
ss
->
dev_semaphore
);
up
(
&
ss
->
dev_semaphore
);
if
(
new_device
)
if
(
new_device
)
kfree
(
ss
);
kfree
(
ss
);
return
NULL
;
return
-
EIO
;
}
}
/* Handle a disconnect event from the USB core */
/* Handle a disconnect event from the USB core */
static
void
storage_disconnect
(
struct
usb_
device
*
dev
,
void
*
ptr
)
static
void
storage_disconnect
(
struct
usb_
interface
*
intf
)
{
{
struct
us_data
*
ss
=
ptr
;
struct
us_data
*
ss
=
dev_get_drvdata
(
&
intf
->
dev
)
;
US_DEBUGP
(
"storage_disconnect() called
\n
"
);
US_DEBUGP
(
"storage_disconnect() called
\n
"
);
dev_set_drvdata
(
&
intf
->
dev
,
NULL
);
/* this is the odd case -- we disconnected but weren't using it */
/* this is the odd case -- we disconnected but weren't using it */
if
(
!
ss
)
{
if
(
!
ss
)
{
US_DEBUGP
(
"-- device was not in use
\n
"
);
US_DEBUGP
(
"-- device was not in use
\n
"
);
...
...
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