Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
85eca8bb
Commit
85eca8bb
authored
Oct 23, 2006
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sync with mainline: drivers/usb/host/ohci-omap.c
parent
55cc30c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
drivers/usb/host/ohci-omap.c
drivers/usb/host/ohci-omap.c
+6
-1
No files found.
drivers/usb/host/ohci-omap.c
View file @
85eca8bb
...
...
@@ -415,8 +415,10 @@ ohci_omap_start (struct usb_hcd *hcd)
if
(
!
host_enabled
)
return
0
;
config
=
hcd
->
self
.
controller
->
platform_data
;
if
(
config
->
otg
||
config
->
rwc
)
if
(
config
->
otg
||
config
->
rwc
)
{
ohci
->
hc_control
=
OHCI_CTRL_RWC
;
writel
(
OHCI_CTRL_RWC
,
&
ohci
->
regs
->
control
);
}
if
((
ret
=
ohci_run
(
ohci
))
<
0
)
{
dev_err
(
hcd
->
self
.
controller
,
"can't start
\n
"
);
...
...
@@ -445,6 +447,7 @@ static const struct hc_driver ohci_omap_hc_driver = {
.
reset
=
ohci_omap_init
,
.
start
=
ohci_omap_start
,
.
stop
=
ohci_omap_stop
,
.
shutdown
=
ohci_shutdown
,
/*
* managing i/o requests and associated device resources
...
...
@@ -463,6 +466,7 @@ static const struct hc_driver ohci_omap_hc_driver = {
*/
.
hub_status_data
=
ohci_hub_status_data
,
.
hub_control
=
ohci_hub_control
,
.
hub_irq_enable
=
ohci_rhsc_enable
,
#ifdef CONFIG_PM
.
bus_suspend
=
ohci_bus_suspend
,
.
bus_resume
=
ohci_bus_resume
,
...
...
@@ -529,6 +533,7 @@ static int ohci_omap_resume(struct platform_device *dev)
static
struct
platform_driver
ohci_hcd_omap_driver
=
{
.
probe
=
ohci_hcd_omap_drv_probe
,
.
remove
=
ohci_hcd_omap_drv_remove
,
.
shutdown
=
usb_hcd_platform_shutdown
,
#ifdef CONFIG_PM
.
suspend
=
ohci_omap_suspend
,
.
resume
=
ohci_omap_resume
,
...
...
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