From: Grant Likely <grant.likely@secretlab.ca>
To: ben@kernel.crashing.org, sfr@canb.auug.org.au, monstr@monstr.eu,
microblaze-uclinux@itee.uq.edu.au,
devicetree-discuss@lists.ozlabs.org, jeremy.kerr@canonical.com,
linuxppc-dev@lists.ozlabs.org
Subject: [PATCH 0/6] OF device code merges and improvements
Date: Tue, 08 Jun 2010 08:26:13 -0600 [thread overview]
Message-ID: <20100608142152.26088.1108.stgit@angua> (raw)
These patches merge more common of_device code between microblaze and
powerpc and some other miscellaneous improvement in preparation for
the merge of of_platform_bus_type with platform_bus_type.
These patches are based on top of the IRQ and address code merge which
I posted earlier. If you want to test them, I've pushed the commits
out to the here:
git://git.secretlab.ca/git/linux-2.6 devicetree-next
Cheers,
g.
---
Grant Likely (6):
of: Use full node name in resource structures
of/device: merge of_device_uevent
of: Modify of_device_get_modalias to be passed struct device
of/device: Merge of_platform_bus_probe()
of: Merge of_device_alloc
of/device: populate platform_device (of_device) resource table on allocation
arch/microblaze/include/asm/device.h | 3
arch/microblaze/include/asm/of_device.h | 21 ---
arch/microblaze/include/asm/of_platform.h | 33 ----
arch/microblaze/kernel/Makefile | 2
arch/microblaze/kernel/of_device.c | 112 ---------------
arch/microblaze/kernel/of_platform.c | 141 ++-----------------
arch/powerpc/include/asm/device.h | 3
arch/powerpc/include/asm/of_device.h | 13 --
arch/powerpc/include/asm/of_platform.h | 11 -
arch/powerpc/kernel/of_device.c | 110 +-------------
arch/powerpc/kernel/of_platform.c | 131 -----------------
drivers/macintosh/macio_sysfs.c | 5 -
drivers/of/address.c | 2
drivers/of/device.c | 62 +++++++-
drivers/of/irq.c | 1
drivers/of/platform.c | 221 +++++++++++++++++++++++++++++
include/linux/of_device.h | 6 +
include/linux/of_platform.h | 21 +++
18 files changed, 337 insertions(+), 561 deletions(-)
delete mode 100644 arch/microblaze/kernel/of_device.c
WARNING: multiple messages have this Message-ID (diff)
From: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
To: ben-XVmvHMARGAS8U2dJNN8I7kB+6BGkLq7r@public.gmane.org,
sfr-3FnU+UHB4dNDw9hX6IcOSA@public.gmane.org,
monstr-pSz03upnqPeHXe+LvDLADg@public.gmane.org,
microblaze-uclinux-rVRm/Wmeqae7NGdpmJTKYQ@public.gmane.org,
devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
jeremy.kerr-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org,
linuxppc-dev@lists.
Subject: [PATCH 0/6] OF device code merges and improvements
Date: Tue, 08 Jun 2010 08:26:13 -0600 [thread overview]
Message-ID: <20100608142152.26088.1108.stgit@angua> (raw)
These patches merge more common of_device code between microblaze and
powerpc and some other miscellaneous improvement in preparation for
the merge of of_platform_bus_type with platform_bus_type.
These patches are based on top of the IRQ and address code merge which
I posted earlier. If you want to test them, I've pushed the commits
out to the here:
git://git.secretlab.ca/git/linux-2.6 devicetree-next
Cheers,
g.
---
Grant Likely (6):
of: Use full node name in resource structures
of/device: merge of_device_uevent
of: Modify of_device_get_modalias to be passed struct device
of/device: Merge of_platform_bus_probe()
of: Merge of_device_alloc
of/device: populate platform_device (of_device) resource table on allocation
arch/microblaze/include/asm/device.h | 3
arch/microblaze/include/asm/of_device.h | 21 ---
arch/microblaze/include/asm/of_platform.h | 33 ----
arch/microblaze/kernel/Makefile | 2
arch/microblaze/kernel/of_device.c | 112 ---------------
arch/microblaze/kernel/of_platform.c | 141 ++-----------------
arch/powerpc/include/asm/device.h | 3
arch/powerpc/include/asm/of_device.h | 13 --
arch/powerpc/include/asm/of_platform.h | 11 -
arch/powerpc/kernel/of_device.c | 110 +-------------
arch/powerpc/kernel/of_platform.c | 131 -----------------
drivers/macintosh/macio_sysfs.c | 5 -
drivers/of/address.c | 2
drivers/of/device.c | 62 +++++++-
drivers/of/irq.c | 1
drivers/of/platform.c | 221 +++++++++++++++++++++++++++++
include/linux/of_device.h | 6 +
include/linux/of_platform.h | 21 +++
18 files changed, 337 insertions(+), 561 deletions(-)
delete mode 100644 arch/microblaze/kernel/of_device.c
next reply other threads:[~2010-06-08 14:26 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-08 14:26 Grant Likely [this message]
2010-06-08 14:26 ` [PATCH 0/6] OF device code merges and improvements Grant Likely
2010-06-08 14:26 ` [PATCH 1/6] of: Use full node name in resource structures Grant Likely
2010-06-08 14:26 ` Grant Likely
2010-06-08 14:26 ` [PATCH 2/6] of/device: merge of_device_uevent Grant Likely
2010-06-08 14:26 ` Grant Likely
2010-06-08 14:26 ` [PATCH 3/6] of: Modify of_device_get_modalias to be passed struct device Grant Likely
2010-06-08 14:26 ` Grant Likely
2010-06-08 14:26 ` [PATCH 4/6] of/device: Merge of_platform_bus_probe() Grant Likely
2010-06-08 14:26 ` Grant Likely
2010-06-08 14:26 ` [PATCH 5/6] of: Merge of_device_alloc Grant Likely
2010-06-08 14:26 ` Grant Likely
2010-06-08 14:26 ` [PATCH 6/6] of/device: populate platform_device (of_device) resource table on allocation Grant Likely
2010-06-08 14:26 ` Grant Likely
2010-06-08 15:57 ` Anton Vorontsov
2010-06-08 15:57 ` Anton Vorontsov
2010-06-08 16:02 ` Grant Likely
2010-06-08 16:02 ` Grant Likely
2010-06-08 16:46 ` Anton Vorontsov
2010-06-08 16:46 ` Anton Vorontsov
2010-06-08 18:41 ` Grant Likely
2010-06-08 18:41 ` Grant Likely
2010-06-08 19:48 ` Anton Vorontsov
2010-06-10 6:17 ` Benjamin Herrenschmidt
2010-06-10 6:17 ` Benjamin Herrenschmidt
2010-06-10 14:18 ` Grant Likely
2010-06-10 14:18 ` Grant Likely
2010-06-10 15:13 ` M. Warner Losh
2010-06-10 15:13 ` M. Warner Losh
2010-06-10 15:47 ` Anton Vorontsov
2010-06-10 15:47 ` Anton Vorontsov
2010-06-10 16:01 ` M. Warner Losh
2010-06-10 16:01 ` M. Warner Losh
2010-06-10 16:52 ` Anton Vorontsov
2010-06-10 17:09 ` Mitch Bradley
2010-06-10 17:09 ` Mitch Bradley
2010-06-10 17:20 ` Grant Likely
2010-06-10 17:20 ` Grant Likely
2010-06-10 17:09 ` M. Warner Losh
2010-06-10 17:09 ` M. Warner Losh
2010-06-11 1:14 ` Benjamin Herrenschmidt
2010-06-10 16:30 ` Grant Likely
2010-06-10 16:30 ` Grant Likely
2010-06-10 17:10 ` Anton Vorontsov
2010-06-10 17:10 ` Anton Vorontsov
2010-06-10 17:21 ` Grant Likely
2010-06-10 17:21 ` Grant Likely
[not found] ` <20100610.091357.513168276793712624.imp-uzTCJ5RojNnQT0dZR+AlfA@public.gmane.org>
2010-06-10 15:47 ` Anton Vorontsov
2010-06-10 15:47 ` Anton Vorontsov
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=20100608142152.26088.1108.stgit@angua \
--to=grant.likely@secretlab.ca \
--cc=ben@kernel.crashing.org \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=jeremy.kerr@canonical.com \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=microblaze-uclinux@itee.uq.edu.au \
--cc=monstr@monstr.eu \
--cc=sfr@canb.auug.org.au \
/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 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.