From: "Heiko Stübner" <heiko@sntech.de> To: Kukjin Kim <kgene.kim@samsung.com> Cc: linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org Subject: [PATCH 0/6] ARM: S3C24XX: Move s3c2440 and s3c2442 into new irq structure Date: Wed, 6 Feb 2013 00:10:53 +0100 [thread overview] Message-ID: <201302060010.53929.heiko@sntech.de> (raw) Follows the formular laid out in the previous series, i.e. moving of the code, changing of the init and creation of the mapping structure. As I lack hardware for these arches, compile tested only. But as it is similar to the architectures of the previous run, hopefully I didn't break anything. Applies to current for-next of the linux-samsung tree, which includes the move of irq.c to mach-s3c24xx. Heiko Stuebner (6): ARM: S3C24XX: move s3c244x irq init to common irq code ARM: S3C24XX: create dedicated irq init functions for s3c2440 and s3c2442 ARM: S3C24XX: move s3c2440 irqs to common irq code ARM: S3C24XX: integrate s3c2440 irqs into common init ARM: S3C24XX: transform s3c2442 irqs into new structure ARM: S3C24XX: transform s3c2440 irqs into new structure arch/arm/mach-s3c24xx/Makefile | 4 +- arch/arm/mach-s3c24xx/common.h | 4 + arch/arm/mach-s3c24xx/irq-s3c2440.c | 128 --------------------------- arch/arm/mach-s3c24xx/irq-s3c244x.c | 142 ------------------------------ arch/arm/mach-s3c24xx/irq.c | 148 ++++++++++++++++++++++++++++++++ arch/arm/mach-s3c24xx/mach-anubis.c | 2 +- arch/arm/mach-s3c24xx/mach-at2440evb.c | 2 +- arch/arm/mach-s3c24xx/mach-gta02.c | 2 +- arch/arm/mach-s3c24xx/mach-mini2440.c | 2 +- arch/arm/mach-s3c24xx/mach-nexcoder.c | 2 +- arch/arm/mach-s3c24xx/mach-osiris.c | 2 +- arch/arm/mach-s3c24xx/mach-rx1950.c | 2 +- arch/arm/mach-s3c24xx/mach-rx3715.c | 7 +-- arch/arm/mach-s3c24xx/mach-smdk2440.c | 2 +- 14 files changed, 163 insertions(+), 286 deletions(-) delete mode 100644 arch/arm/mach-s3c24xx/irq-s3c2440.c delete mode 100644 arch/arm/mach-s3c24xx/irq-s3c244x.c -- 1.7.2.3
WARNING: multiple messages have this Message-ID
From: heiko@sntech.de (Heiko Stübner) To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 0/6] ARM: S3C24XX: Move s3c2440 and s3c2442 into new irq structure Date: Wed, 6 Feb 2013 00:10:53 +0100 [thread overview] Message-ID: <201302060010.53929.heiko@sntech.de> (raw) Follows the formular laid out in the previous series, i.e. moving of the code, changing of the init and creation of the mapping structure. As I lack hardware for these arches, compile tested only. But as it is similar to the architectures of the previous run, hopefully I didn't break anything. Applies to current for-next of the linux-samsung tree, which includes the move of irq.c to mach-s3c24xx. Heiko Stuebner (6): ARM: S3C24XX: move s3c244x irq init to common irq code ARM: S3C24XX: create dedicated irq init functions for s3c2440 and s3c2442 ARM: S3C24XX: move s3c2440 irqs to common irq code ARM: S3C24XX: integrate s3c2440 irqs into common init ARM: S3C24XX: transform s3c2442 irqs into new structure ARM: S3C24XX: transform s3c2440 irqs into new structure arch/arm/mach-s3c24xx/Makefile | 4 +- arch/arm/mach-s3c24xx/common.h | 4 + arch/arm/mach-s3c24xx/irq-s3c2440.c | 128 --------------------------- arch/arm/mach-s3c24xx/irq-s3c244x.c | 142 ------------------------------ arch/arm/mach-s3c24xx/irq.c | 148 ++++++++++++++++++++++++++++++++ arch/arm/mach-s3c24xx/mach-anubis.c | 2 +- arch/arm/mach-s3c24xx/mach-at2440evb.c | 2 +- arch/arm/mach-s3c24xx/mach-gta02.c | 2 +- arch/arm/mach-s3c24xx/mach-mini2440.c | 2 +- arch/arm/mach-s3c24xx/mach-nexcoder.c | 2 +- arch/arm/mach-s3c24xx/mach-osiris.c | 2 +- arch/arm/mach-s3c24xx/mach-rx1950.c | 2 +- arch/arm/mach-s3c24xx/mach-rx3715.c | 7 +-- arch/arm/mach-s3c24xx/mach-smdk2440.c | 2 +- 14 files changed, 163 insertions(+), 286 deletions(-) delete mode 100644 arch/arm/mach-s3c24xx/irq-s3c2440.c delete mode 100644 arch/arm/mach-s3c24xx/irq-s3c244x.c -- 1.7.2.3
next reply other threads:[~2013-02-05 23:11 UTC|newest] Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top 2013-02-05 23:10 Heiko Stübner [this message] 2013-02-05 23:10 ` Heiko Stübner 2013-02-05 23:11 ` [PATCH 1/6] ARM: S3C24XX: move s3c244x irq init to common irq code Heiko Stübner 2013-02-05 23:11 ` Heiko Stübner 2013-02-05 23:12 ` [PATCH 2/6] ARM: S3C24XX: create dedicated irq init functions for s3c2440 and s3c2442 Heiko Stübner 2013-02-05 23:12 ` Heiko Stübner 2013-02-05 23:13 ` [PATCH 3/6] ARM: S3C24XX: move s3c2440 irqs to common irq code Heiko Stübner 2013-02-05 23:13 ` Heiko Stübner 2013-02-05 23:14 ` [PATCH 4/6] ARM: S3C24XX: integrate s3c2440 irqs into common init Heiko Stübner 2013-02-05 23:14 ` Heiko Stübner 2013-02-05 23:14 ` [PATCH 5/6] ARM: S3C24XX: transform s3c2442 irqs into new structure Heiko Stübner 2013-02-05 23:14 ` Heiko Stübner 2013-02-05 23:16 ` [PATCH 6/6] ARM: S3C24XX: transform s3c2440 " Heiko Stübner 2013-02-05 23:16 ` Heiko Stübner
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=201302060010.53929.heiko@sntech.de \ --to=heiko@sntech.de \ --cc=kgene.kim@samsung.com \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-samsung-soc@vger.kernel.org \ --subject='Re: [PATCH 0/6] ARM: S3C24XX: Move s3c2440 and s3c2442 into new irq structure' \ /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
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.