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
ce1c532e
Commit
ce1c532e
authored
Oct 23, 2006
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge with mainline: Add back omap 8250 hacks
Add back omap 8250 hacks
parent
572012cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
drivers/serial/8250.c
drivers/serial/8250.c
+9
-0
No files found.
drivers/serial/8250.c
View file @
ce1c532e
...
...
@@ -1383,7 +1383,11 @@ static irqreturn_t serial8250_interrupt(int irq, void *dev_id)
DEBUG_INTR
(
"end.
\n
"
);
#ifdef CONFIG_ARCH_OMAP15XX
return
IRQ_HANDLED
;
/* FIXME: iir status not ready on 1510 */
#else
return
IRQ_RETVAL
(
handled
);
#endif
}
/*
...
...
@@ -1956,6 +1960,11 @@ static int serial8250_request_std_resource(struct uart_8250_port *up)
unsigned
int
size
=
8
<<
up
->
port
.
regshift
;
int
ret
=
0
;
#ifdef CONFIG_ARCH_OMAP
if
(
is_omap_port
((
unsigned
int
)
up
->
port
.
membase
))
size
=
0x16
<<
up
->
port
.
regshift
;
#endif
switch
(
up
->
port
.
iotype
)
{
case
UPIO_AU
:
size
=
0x100000
;
...
...
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