* [PATCH -queue 1/4] MIPS: use generic current.h
@ 2010-02-12 12:27 Yoichi Yuasa
2010-02-12 12:29 ` [PATCH -queue 2/4] MIPS: use generic parport.h Yoichi Yuasa
2010-02-17 13:54 ` [PATCH -queue 1/4] MIPS: use generic current.h Ralf Baechle
0 siblings, 2 replies; 8+ messages in thread
From: Yoichi Yuasa @ 2010-02-12 12:27 UTC (permalink / raw)
To: Ralf Baechle; +Cc: yuasa, linux-mips
Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
---
arch/mips/include/asm/current.h | 24 +-----------------------
1 files changed, 1 insertions(+), 23 deletions(-)
diff --git a/arch/mips/include/asm/current.h b/arch/mips/include/asm/current.h
index 559db66..4c51401 100644
--- a/arch/mips/include/asm/current.h
+++ b/arch/mips/include/asm/current.h
@@ -1,23 +1 @@
-/*
- * This file is subject to the terms and conditions of the GNU General Public
- * License. See the file "COPYING" in the main directory of this archive
- * for more details.
- *
- * Copyright (C) 1998, 2002 Ralf Baechle
- * Copyright (C) 1999 Silicon Graphics, Inc.
- */
-#ifndef _ASM_CURRENT_H
-#define _ASM_CURRENT_H
-
-#include <linux/thread_info.h>
-
-struct task_struct;
-
-static inline struct task_struct * get_current(void)
-{
- return current_thread_info()->task;
-}
-
-#define current get_current()
-
-#endif /* _ASM_CURRENT_H */
+#include <asm-generic/current.h>
--
1.6.6.2
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH -queue 2/4] MIPS: use generic parport.h
2010-02-12 12:27 [PATCH -queue 1/4] MIPS: use generic current.h Yoichi Yuasa
@ 2010-02-12 12:29 ` Yoichi Yuasa
2010-02-12 12:33 ` [PATCH -queue 3/4] MIPS: use generic serial.h Yoichi Yuasa
2010-02-17 13:54 ` [PATCH -queue 2/4] MIPS: use generic parport.h Ralf Baechle
2010-02-17 13:54 ` [PATCH -queue 1/4] MIPS: use generic current.h Ralf Baechle
1 sibling, 2 replies; 8+ messages in thread
From: Yoichi Yuasa @ 2010-02-12 12:29 UTC (permalink / raw)
To: Ralf Baechle; +Cc: yuasa, linux-mips
Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
---
arch/mips/include/asm/parport.h | 16 +---------------
1 files changed, 1 insertions(+), 15 deletions(-)
diff --git a/arch/mips/include/asm/parport.h b/arch/mips/include/asm/parport.h
index f526568..cf252af 100644
--- a/arch/mips/include/asm/parport.h
+++ b/arch/mips/include/asm/parport.h
@@ -1,15 +1 @@
-/*
- * Copyright (C) 1999, 2000 Tim Waugh <tim@cyberelk.demon.co.uk>
- *
- * This file should only be included by drivers/parport/parport_pc.c.
- */
-#ifndef _ASM_PARPORT_H
-#define _ASM_PARPORT_H
-
-static int __devinit parport_pc_find_isa_ports(int autoirq, int autodma);
-static int __devinit parport_pc_find_nonpci_ports(int autoirq, int autodma)
-{
- return parport_pc_find_isa_ports(autoirq, autodma);
-}
-
-#endif /* _ASM_PARPORT_H */
+#include <asm-generic/parport.h>
--
1.6.6.2
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH -queue 3/4] MIPS: use generic serial.h
2010-02-12 12:29 ` [PATCH -queue 2/4] MIPS: use generic parport.h Yoichi Yuasa
@ 2010-02-12 12:33 ` Yoichi Yuasa
2010-02-12 12:35 ` [PATCH -queue 4/4] MIPS: use generic ucontext.h Yoichi Yuasa
2010-02-17 13:54 ` [PATCH -queue 3/4] MIPS: use generic serial.h Ralf Baechle
2010-02-17 13:54 ` [PATCH -queue 2/4] MIPS: use generic parport.h Ralf Baechle
1 sibling, 2 replies; 8+ messages in thread
From: Yoichi Yuasa @ 2010-02-12 12:33 UTC (permalink / raw)
To: Ralf Baechle; +Cc: yuasa, linux-mips
Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
---
arch/mips/include/asm/serial.h | 23 +----------------------
1 files changed, 1 insertions(+), 22 deletions(-)
diff --git a/arch/mips/include/asm/serial.h b/arch/mips/include/asm/serial.h
index c07ebd8..a0cb0ca 100644
--- a/arch/mips/include/asm/serial.h
+++ b/arch/mips/include/asm/serial.h
@@ -1,22 +1 @@
-/*
- * This file is subject to the terms and conditions of the GNU General Public
- * License. See the file "COPYING" in the main directory of this archive
- * for more details.
- *
- * Copyright (C) 1999 by Ralf Baechle
- * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
- */
-#ifndef _ASM_SERIAL_H
-#define _ASM_SERIAL_H
-
-
-/*
- * This assumes you have a 1.8432 MHz clock for your UART.
- *
- * It'd be nice if someone built a serial card with a 24.576 MHz
- * clock, since the 16550A is capable of handling a top speed of 1.5
- * megabits/second; but this requires the faster clock.
- */
-#define BASE_BAUD (1843200 / 16)
-
-#endif /* _ASM_SERIAL_H */
+#include <asm-generic/serial.h>
--
1.6.6.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH -queue 2/4] MIPS: use generic parport.h
2010-02-12 12:29 ` [PATCH -queue 2/4] MIPS: use generic parport.h Yoichi Yuasa
2010-02-12 12:33 ` [PATCH -queue 3/4] MIPS: use generic serial.h Yoichi Yuasa
@ 2010-02-17 13:54 ` Ralf Baechle
1 sibling, 0 replies; 8+ messages in thread
From: Ralf Baechle @ 2010-02-17 13:54 UTC (permalink / raw)
To: Yoichi Yuasa; +Cc: linux-mips
Thanks, queued for 2.6.34.
Ralf
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH -queue 1/4] MIPS: use generic current.h
2010-02-12 12:27 [PATCH -queue 1/4] MIPS: use generic current.h Yoichi Yuasa
2010-02-12 12:29 ` [PATCH -queue 2/4] MIPS: use generic parport.h Yoichi Yuasa
@ 2010-02-17 13:54 ` Ralf Baechle
1 sibling, 0 replies; 8+ messages in thread
From: Ralf Baechle @ 2010-02-17 13:54 UTC (permalink / raw)
To: Yoichi Yuasa; +Cc: linux-mips
On Fri, Feb 12, 2010 at 09:27:59PM +0900, Yoichi Yuasa wrote:
Thanks, queued for 2.6.34.
Ralf
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-02-17 13:55 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-12 12:27 [PATCH -queue 1/4] MIPS: use generic current.h Yoichi Yuasa
2010-02-12 12:29 ` [PATCH -queue 2/4] MIPS: use generic parport.h Yoichi Yuasa
2010-02-12 12:33 ` [PATCH -queue 3/4] MIPS: use generic serial.h Yoichi Yuasa
2010-02-12 12:35 ` [PATCH -queue 4/4] MIPS: use generic ucontext.h Yoichi Yuasa
2010-02-17 13:54 ` Ralf Baechle
2010-02-17 13:54 ` [PATCH -queue 3/4] MIPS: use generic serial.h Ralf Baechle
2010-02-17 13:54 ` [PATCH -queue 2/4] MIPS: use generic parport.h Ralf Baechle
2010-02-17 13:54 ` [PATCH -queue 1/4] MIPS: use generic current.h Ralf Baechle
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.