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
996908f0
Commit
996908f0
authored
May 28, 2002
by
Paul Mackerras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PPC32: use the standard kernel min macro in a couple of places.
Patch from Rusty Russell.
parent
aa0c9ee7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
17 deletions
+5
-17
arch/ppc/8260_io/uart.c
arch/ppc/8260_io/uart.c
+2
-6
arch/ppc/8xx_io/uart.c
arch/ppc/8xx_io/uart.c
+2
-6
arch/ppc/kernel/signal.c
arch/ppc/kernel/signal.c
+1
-5
No files found.
arch/ppc/8260_io/uart.c
View file @
996908f0
...
...
@@ -183,10 +183,6 @@ static struct termios *serial_termios_locked[NR_PORTS];
#define TX_NUM_FIFO 4
#define TX_BUF_SIZE 32
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
/* The async_struct in serial.h does not really give us what we
* need, so define our own here.
*/
...
...
@@ -1016,7 +1012,7 @@ static int rs_8xx_write(struct tty_struct * tty, int from_user,
bdp
=
info
->
tx_cur
;
while
(
1
)
{
c
=
MIN
(
count
,
TX_BUF_SIZE
);
c
=
min
(
count
,
TX_BUF_SIZE
);
if
(
c
<=
0
)
break
;
...
...
@@ -1763,7 +1759,7 @@ static void rs_8xx_wait_until_sent(struct tty_struct *tty, int timeout)
*/
char_time
=
1
;
if
(
timeout
)
char_time
=
MIN
(
char_time
,
timeout
);
char_time
=
min
(
char_time
,
timeout
);
#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
printk
(
"In rs_wait_until_sent(%d) check=%lu..."
,
timeout
,
char_time
);
printk
(
"jiff=%lu..."
,
jiffies
);
...
...
arch/ppc/8xx_io/uart.c
View file @
996908f0
...
...
@@ -183,10 +183,6 @@ static struct termios *serial_termios_locked[NR_PORTS];
#define TX_NUM_FIFO 4
#define TX_BUF_SIZE 32
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
/* The async_struct in serial.h does not really give us what we
* need, so define our own here.
*/
...
...
@@ -1098,7 +1094,7 @@ static int rs_8xx_write(struct tty_struct * tty, int from_user,
bdp
=
info
->
tx_cur
;
while
(
1
)
{
c
=
MIN
(
count
,
TX_BUF_SIZE
);
c
=
min
(
count
,
TX_BUF_SIZE
);
if
(
c
<=
0
)
break
;
...
...
@@ -1807,7 +1803,7 @@ static void rs_8xx_wait_until_sent(struct tty_struct *tty, int timeout)
*/
char_time
=
1
;
if
(
timeout
)
char_time
=
MIN
(
char_time
,
timeout
);
char_time
=
min
(
char_time
,
timeout
);
#ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
printk
(
"In rs_wait_until_sent(%d) check=%lu..."
,
timeout
,
char_time
);
printk
(
"jiff=%lu..."
,
jiffies
);
...
...
arch/ppc/kernel/signal.c
View file @
996908f0
...
...
@@ -40,13 +40,9 @@
#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
#ifndef MIN
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
#endif
extern
void
sigreturn_exit
(
struct
pt_regs
*
);
#define GP_REGS_SIZE
MIN
(sizeof(elf_gregset_t), sizeof(struct pt_regs))
#define GP_REGS_SIZE
min
(sizeof(elf_gregset_t), sizeof(struct pt_regs))
/*
* These are the flags in the MSR that the user is allowed to change
...
...
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