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
762c69e3
Commit
762c69e3
authored
Dec 16, 2008
by
Paul Mundt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
serial: sh-sci: pr_debug() -> dev_dbg() conversion.
Signed-off-by:
Paul Mundt
<
lethal@linux-sh.org
>
parent
027e6872
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
23 deletions
+26
-23
drivers/serial/sh-sci.c
drivers/serial/sh-sci.c
+26
-23
No files found.
drivers/serial/sh-sci.c
View file @
762c69e3
...
@@ -496,7 +496,7 @@ static inline void sci_receive_chars(struct uart_port *port)
...
@@ -496,7 +496,7 @@ static inline void sci_receive_chars(struct uart_port *port)
}
}
/* Nonzero => end-of-break */
/* Nonzero => end-of-break */
pr_debug
(
"scif:
debounce<%02x>
\n
"
,
c
);
dev_dbg
(
port
->
dev
,
"
debounce<%02x>
\n
"
,
c
);
sci_port
->
break_flag
=
0
;
sci_port
->
break_flag
=
0
;
if
(
STEPFN
(
c
))
{
if
(
STEPFN
(
c
))
{
...
@@ -513,12 +513,13 @@ static inline void sci_receive_chars(struct uart_port *port)
...
@@ -513,12 +513,13 @@ static inline void sci_receive_chars(struct uart_port *port)
/* Store data and status */
/* Store data and status */
if
(
status
&
SCxSR_FER
(
port
))
{
if
(
status
&
SCxSR_FER
(
port
))
{
flag
=
TTY_FRAME
;
flag
=
TTY_FRAME
;
pr_debug
(
"sci:
frame error
\n
"
);
dev_notice
(
port
->
dev
,
"
frame error
\n
"
);
}
else
if
(
status
&
SCxSR_PER
(
port
))
{
}
else
if
(
status
&
SCxSR_PER
(
port
))
{
flag
=
TTY_PARITY
;
flag
=
TTY_PARITY
;
pr_debug
(
"sci:
parity error
\n
"
);
dev_notice
(
port
->
dev
,
"
parity error
\n
"
);
}
else
}
else
flag
=
TTY_NORMAL
;
flag
=
TTY_NORMAL
;
tty_insert_flip_char
(
tty
,
c
,
flag
);
tty_insert_flip_char
(
tty
,
c
,
flag
);
}
}
}
}
...
@@ -578,7 +579,8 @@ static inline int sci_handle_errors(struct uart_port *port)
...
@@ -578,7 +579,8 @@ static inline int sci_handle_errors(struct uart_port *port)
/* overrun error */
/* overrun error */
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_OVERRUN
))
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_OVERRUN
))
copied
++
;
copied
++
;
pr_debug
(
"sci: overrun error
\n
"
);
dev_notice
(
port
->
dev
,
"overrun error"
);
}
}
if
(
status
&
SCxSR_FER
(
port
))
{
if
(
status
&
SCxSR_FER
(
port
))
{
...
@@ -593,7 +595,9 @@ static inline int sci_handle_errors(struct uart_port *port)
...
@@ -593,7 +595,9 @@ static inline int sci_handle_errors(struct uart_port *port)
/* Do sysrq handling. */
/* Do sysrq handling. */
if
(
uart_handle_break
(
port
))
if
(
uart_handle_break
(
port
))
return
0
;
return
0
;
pr_debug
(
"sci: BREAK detected
\n
"
);
dev_dbg
(
port
->
dev
,
"BREAK detected
\n
"
);
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_BREAK
))
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_BREAK
))
copied
++
;
copied
++
;
}
}
...
@@ -602,7 +606,8 @@ static inline int sci_handle_errors(struct uart_port *port)
...
@@ -602,7 +606,8 @@ static inline int sci_handle_errors(struct uart_port *port)
/* frame error */
/* frame error */
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_FRAME
))
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_FRAME
))
copied
++
;
copied
++
;
pr_debug
(
"sci: frame error
\n
"
);
dev_notice
(
port
->
dev
,
"frame error
\n
"
);
}
}
}
}
...
@@ -610,7 +615,8 @@ static inline int sci_handle_errors(struct uart_port *port)
...
@@ -610,7 +615,8 @@ static inline int sci_handle_errors(struct uart_port *port)
/* parity error */
/* parity error */
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_PARITY
))
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_PARITY
))
copied
++
;
copied
++
;
pr_debug
(
"sci: parity error
\n
"
);
dev_notice
(
port
->
dev
,
"parity error"
);
}
}
if
(
copied
)
if
(
copied
)
...
@@ -637,7 +643,8 @@ static inline int sci_handle_breaks(struct uart_port *port)
...
@@ -637,7 +643,8 @@ static inline int sci_handle_breaks(struct uart_port *port)
/* Notify of BREAK */
/* Notify of BREAK */
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_BREAK
))
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_BREAK
))
copied
++
;
copied
++
;
pr_debug
(
"sci: BREAK detected
\n
"
);
dev_dbg
(
port
->
dev
,
"BREAK detected
\n
"
);
}
}
#if defined(SCIF_ORER)
#if defined(SCIF_ORER)
...
@@ -646,7 +653,7 @@ static inline int sci_handle_breaks(struct uart_port *port)
...
@@ -646,7 +653,7 @@ static inline int sci_handle_breaks(struct uart_port *port)
sci_out
(
port
,
SCLSR
,
0
);
sci_out
(
port
,
SCLSR
,
0
);
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_OVERRUN
))
{
if
(
tty_insert_flip_char
(
tty
,
0
,
TTY_OVERRUN
))
{
copied
++
;
copied
++
;
pr_debug
(
"sci:
overrun error
\n
"
);
dev_notice
(
port
->
dev
,
"
overrun error
\n
"
);
}
}
}
}
#endif
#endif
...
@@ -698,7 +705,7 @@ static irqreturn_t sci_er_interrupt(int irq, void *ptr)
...
@@ -698,7 +705,7 @@ static irqreturn_t sci_er_interrupt(int irq, void *ptr)
sci_out
(
port
,
SCLSR
,
0
);
sci_out
(
port
,
SCLSR
,
0
);
tty_insert_flip_char
(
tty
,
0
,
TTY_OVERRUN
);
tty_insert_flip_char
(
tty
,
0
,
TTY_OVERRUN
);
tty_flip_buffer_push
(
tty
);
tty_flip_buffer_push
(
tty
);
pr_debug
(
"scif:
overrun error
\n
"
);
dev_notice
(
port
->
dev
,
"
overrun error
\n
"
);
}
}
#endif
#endif
sci_rx_interrupt
(
irq
,
ptr
);
sci_rx_interrupt
(
irq
,
ptr
);
...
@@ -782,23 +789,22 @@ static int sci_request_irq(struct sci_port *port)
...
@@ -782,23 +789,22 @@ static int sci_request_irq(struct sci_port *port)
"SCI Transmit Data Empty"
,
"SCI Break"
};
"SCI Transmit Data Empty"
,
"SCI Break"
};
if
(
port
->
irqs
[
0
]
==
port
->
irqs
[
1
])
{
if
(
port
->
irqs
[
0
]
==
port
->
irqs
[
1
])
{
if
(
!
port
->
irqs
[
0
])
{
if
(
unlikely
(
!
port
->
irqs
[
0
]))
printk
(
KERN_ERR
"sci: Cannot allocate irq.(IRQ=0)
\n
"
);
return
-
ENODEV
;
return
-
ENODEV
;
}
if
(
request_irq
(
port
->
irqs
[
0
],
sci_mpxed_interrupt
,
if
(
request_irq
(
port
->
irqs
[
0
],
sci_mpxed_interrupt
,
IRQF_DISABLED
,
"sci"
,
port
))
{
IRQF_DISABLED
,
"sci"
,
port
))
{
printk
(
KERN_ERR
"sci: Cannot allocate irq.
\n
"
);
dev_err
(
port
->
port
.
dev
,
"Can't allocate IRQ
\n
"
);
return
-
ENODEV
;
return
-
ENODEV
;
}
}
}
else
{
}
else
{
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
handlers
);
i
++
)
{
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
handlers
);
i
++
)
{
if
(
!
port
->
irqs
[
i
]
)
if
(
unlikely
(
!
port
->
irqs
[
i
])
)
continue
;
continue
;
if
(
request_irq
(
port
->
irqs
[
i
],
handlers
[
i
],
if
(
request_irq
(
port
->
irqs
[
i
],
handlers
[
i
],
IRQF_DISABLED
,
desc
[
i
],
port
))
{
IRQF_DISABLED
,
desc
[
i
],
port
))
{
printk
(
KERN_ERR
"sci: Cannot allocate irq.
\n
"
);
dev_err
(
port
->
port
.
dev
,
"Can't allocate IRQ
\n
"
);
return
-
ENODEV
;
return
-
ENODEV
;
}
}
}
}
...
@@ -811,12 +817,9 @@ static void sci_free_irq(struct sci_port *port)
...
@@ -811,12 +817,9 @@ static void sci_free_irq(struct sci_port *port)
{
{
int
i
;
int
i
;
if
(
port
->
irqs
[
0
]
==
port
->
irqs
[
1
])
{
if
(
port
->
irqs
[
0
]
==
port
->
irqs
[
1
])
if
(
!
port
->
irqs
[
0
])
free_irq
(
port
->
irqs
[
0
],
port
);
printk
(
KERN_ERR
"sci: sci_free_irq error
\n
"
);
else
{
else
free_irq
(
port
->
irqs
[
0
],
port
);
}
else
{
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
port
->
irqs
);
i
++
)
{
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
port
->
irqs
);
i
++
)
{
if
(
!
port
->
irqs
[
i
])
if
(
!
port
->
irqs
[
i
])
continue
;
continue
;
...
@@ -1040,7 +1043,7 @@ static void sci_config_port(struct uart_port *port, int flags)
...
@@ -1040,7 +1043,7 @@ static void sci_config_port(struct uart_port *port, int flags)
port
->
membase
=
ioremap_nocache
(
port
->
mapbase
,
0x40
);
port
->
membase
=
ioremap_nocache
(
port
->
mapbase
,
0x40
);
#endif
#endif
printk
(
KERN_ERR
"sci:
can't remap port#%d
\n
"
,
port
->
line
);
dev_err
(
port
->
dev
,
"
can't remap port#%d
\n
"
,
port
->
line
);
}
}
}
}
...
...
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