From: Haavard Skinnemoen <hskinnemoen@atmel.com>
To: Andrew Victor <andrew@sanpeople.com>
Cc: Russell King <rmk+lkml@arm.linux.org.uk>,
linux-kernel@vger.kernel.org, hskinnemoen@atmel.com
Subject: [PATCH 0/8] Rename at91_serial driver as atmel_serial
Date: Wed, 27 Sep 2006 18:57:57 +0200 [thread overview]
Message-ID: <1159376285670-git-send-email-hskinnemoen@atmel.com> (raw)
Hi,
Here's the big at91_serial rename I've been talking about before. It
turned out to be quite big on its own, so I'm sending it as a separate
series. I have a few more patches for the atmel_serial driver (or
at91_serial driver, depending on whether you'll accept this series)
which I'll send you tomorrow. Please give me a hint about whether this
series is acceptable or not so that I can rework the other patches as
appropriate.
Patch #6 turned out to be too big to send inline, so I'm sending a link
to it instead. I can send it to you in private if you want.
Also, the patches have been made with git-format-patch -M, so they
won't work with patch, only with git. This reduced the size of the
first two patches a lot.
Shortlog, diffstat and summary of the full series follows.
Haavard
Haavard Skinnemoen:
at91_serial -> atmel_serial: at91rm9200_usart.h
at91_serial -> atmel_serial: at91_serial.c
at91_serial -> atmel_serial: Kconfig symbols
at91_serial -> atmel_serial: Platform device name
at91_serial -> atmel_serial: Public definitions
at91_serial -> atmel_serial: Internal names
serial: Rename PORT_AT91 -> PORT_ATMEL
atmel_serial: Kill at91_register_uart_fns
arch/arm/configs/at91rm9200dk_defconfig | 6
arch/arm/configs/at91rm9200ek_defconfig | 6
arch/arm/configs/ateb9200_defconfig | 6
arch/arm/configs/carmeva_defconfig | 4
arch/arm/configs/csb337_defconfig | 6
arch/arm/configs/csb637_defconfig | 6
arch/arm/configs/kafa_defconfig | 6
arch/arm/configs/kb9202_defconfig | 4
arch/arm/configs/onearm_defconfig | 6
arch/arm/mach-at91rm9200/devices.c | 34 -
arch/avr32/configs/atstk1002_defconfig | 6
arch/avr32/mach-at32ap/at32ap7000.c | 46 -
drivers/serial/Kconfig | 14
drivers/serial/Makefile | 2
drivers/serial/at91_serial.c | 980 --------------------
drivers/serial/atmel_serial.c | 940 +++++++++++++++++++
drivers/serial/atmel_serial.h | 123 +++
include/asm-arm/arch-at91rm9200/at91rm9200_usart.h | 123 ---
include/asm-arm/arch-at91rm9200/board.h | 4
include/asm-arm/arch-at91rm9200/hardware.h | 2
include/asm-arm/mach/serial_at91.h | 33 -
include/asm-avr32/arch-at32ap/at91rm9200_usart.h | 123 ---
include/asm-avr32/arch-at32ap/board.h | 4
include/asm-avr32/mach/serial_at91.h | 33 -
include/linux/serial_core.h | 4
25 files changed, 1146 insertions(+), 1375 deletions(-)
delete mode 100644 drivers/serial/at91_serial.c
create mode 100644 drivers/serial/atmel_serial.c
create mode 100644 drivers/serial/atmel_serial.h
delete mode 100644 include/asm-arm/arch-at91rm9200/at91rm9200_usart.h
delete mode 100644 include/asm-arm/mach/serial_at91.h
delete mode 100644 include/asm-avr32/arch-at32ap/at91rm9200_usart.h
delete mode 100644 include/asm-avr32/mach/serial_at91.h
next reply other threads:[~2006-09-27 16:58 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-27 16:57 Haavard Skinnemoen [this message]
2006-09-27 16:57 ` [PATCH 1/8] at91_serial -> atmel_serial: at91rm9200_usart.h Haavard Skinnemoen
2006-09-27 16:57 ` [PATCH 2/8] at91_serial -> atmel_serial: at91_serial.c Haavard Skinnemoen
2006-09-27 16:58 ` [PATCH 3/8] at91_serial -> atmel_serial: Kconfig symbols Haavard Skinnemoen
2006-09-27 16:58 ` [PATCH 4/8] at91_serial -> atmel_serial: Platform device name Haavard Skinnemoen
2006-09-27 16:58 ` [PATCH 5/8] at91_serial -> atmel_serial: Public definitions Haavard Skinnemoen
2006-09-27 16:58 ` [PATCH 6/8] at91_serial -> atmel_serial: Internal names Haavard Skinnemoen
2006-09-27 16:58 ` [PATCH 7/8] serial: Rename PORT_AT91 -> PORT_ATMEL Haavard Skinnemoen
2006-09-27 16:58 ` [PATCH 8/8] atmel_serial: Kill at91_register_uart_fns Haavard Skinnemoen
2006-09-28 9:21 ` Andrew Victor
2006-09-28 9:38 ` Haavard Skinnemoen
2006-09-28 11:14 ` Andrew Victor
2006-09-28 11:51 ` Haavard Skinnemoen
2006-09-28 11:56 ` Andrew Victor
2006-09-28 17:02 ` Sam Ravnborg
2006-09-28 9:03 ` [PATCH 7/8] serial: Rename PORT_AT91 -> PORT_ATMEL Andrew Victor
2006-09-28 9:02 ` [PATCH 6/8] at91_serial -> atmel_serial: Internal names Andrew Victor
2006-09-28 8:54 ` [PATCH 5/8] at91_serial -> atmel_serial: Public definitions Andrew Victor
2006-09-28 9:24 ` Haavard Skinnemoen
2006-09-28 9:22 ` Andrew Victor
2006-09-28 8:35 ` [PATCH 4/8] at91_serial -> atmel_serial: Platform device name Andrew Victor
2006-09-28 12:55 ` Haavard Skinnemoen
2006-09-28 8:34 ` [PATCH 3/8] at91_serial -> atmel_serial: Kconfig symbols Andrew Victor
2006-09-28 8:54 ` Haavard Skinnemoen
2006-09-28 8:50 ` Andrew Victor
2006-09-28 8:22 ` [PATCH 2/8] at91_serial -> atmel_serial: at91_serial.c Andrew Victor
2006-09-28 8:20 ` [PATCH 1/8] at91_serial -> atmel_serial: at91rm9200_usart.h Andrew Victor
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1159376285670-git-send-email-hskinnemoen@atmel.com \
--to=hskinnemoen@atmel.com \
--cc=andrew@sanpeople.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rmk+lkml@arm.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®