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
nexedi
linux
Commits
ecf5899f
Commit
ecf5899f
authored
Feb 27, 2004
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Fix SA1111 OHCI IRQ handler return type.
parent
0bc6fe2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
drivers/usb/host/ohci-sa1111.c
drivers/usb/host/ohci-sa1111.c
+2
-2
No files found.
drivers/usb/host/ohci-sa1111.c
View file @
ecf5899f
...
@@ -105,7 +105,7 @@ static void dump_hci_status(struct usb_hcd *hcd, const char *label)
...
@@ -105,7 +105,7 @@ static void dump_hci_status(struct usb_hcd *hcd, const char *label)
}
}
#endif
#endif
static
void
usb_hcd_sa1111_hcim_irq
(
int
irq
,
void
*
__hcd
,
struct
pt_regs
*
r
)
static
irqreturn_t
usb_hcd_sa1111_hcim_irq
(
int
irq
,
void
*
__hcd
,
struct
pt_regs
*
r
)
{
{
struct
usb_hcd
*
hcd
=
__hcd
;
struct
usb_hcd
*
hcd
=
__hcd
;
// unsigned long status = sa1111_readl(hcd->regs + SA1111_USB_STATUS);
// unsigned long status = sa1111_readl(hcd->regs + SA1111_USB_STATUS);
...
@@ -120,7 +120,7 @@ static void usb_hcd_sa1111_hcim_irq (int irq, void *__hcd, struct pt_regs * r)
...
@@ -120,7 +120,7 @@ static void usb_hcd_sa1111_hcim_irq (int irq, void *__hcd, struct pt_regs * r)
}
}
#endif
#endif
usb_hcd_irq
(
irq
,
hcd
,
r
);
return
usb_hcd_irq
(
irq
,
hcd
,
r
);
}
}
/*-------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------*/
...
...
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