* [PATCH] powerpc/drivers: use linux/of_device.h instead of asm/of_device.h
@ 2008-08-11 7:04 Stephen Rothwell
2008-08-11 7:25 ` Jean Delvare
2008-08-11 7:29 ` [alsa-devel] " Takashi Iwai
0 siblings, 2 replies; 3+ messages in thread
From: Stephen Rothwell @ 2008-08-11 7:04 UTC (permalink / raw)
To: Paul Mackerras, Benjamin Herrenschmidt
Cc: alsa-devel, Stelian Pop, Hanselmann, Michael, lm-sensors,
linuxppc-dev, Delvare, Johannes Berg, Jean
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
drivers/hwmon/ams/ams.h | 2 +-
sound/aoa/soundbus/soundbus.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
These are the last two users of asm/of_device.h. If everyone is happy,
we can put this through the powerpc tree. I have build tested for
ppc64_defconfig and ppc6xx_defconfig (which uses the relevant drivers).
After this we can remove the include of linux/of_device.h from
asm/of_device.h
diff --git a/drivers/hwmon/ams/ams.h b/drivers/hwmon/ams/ams.h
index a6221e5..221ef69 100644
--- a/drivers/hwmon/ams/ams.h
+++ b/drivers/hwmon/ams/ams.h
@@ -4,7 +4,7 @@
#include <linux/mutex.h>
#include <linux/spinlock.h>
#include <linux/types.h>
-#include <asm/of_device.h>
+#include <linux/of_device.h>
enum ams_irq {
AMS_IRQ_FREEFALL = 0x01,
diff --git a/sound/aoa/soundbus/soundbus.h b/sound/aoa/soundbus/soundbus.h
index 622cd37..a0f223c 100644
--- a/sound/aoa/soundbus/soundbus.h
+++ b/sound/aoa/soundbus/soundbus.h
@@ -8,7 +8,7 @@
#ifndef __SOUNDBUS_H
#define __SOUNDBUS_H
-#include <asm/of_device.h>
+#include <linux/of_device.h>
#include <sound/pcm.h>
#include <linux/list.h>
--
1.5.6.3
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc/drivers: use linux/of_device.h instead of asm/of_device.h
2008-08-11 7:04 [PATCH] powerpc/drivers: use linux/of_device.h instead of asm/of_device.h Stephen Rothwell
@ 2008-08-11 7:25 ` Jean Delvare
2008-08-11 7:29 ` [alsa-devel] " Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Jean Delvare @ 2008-08-11 7:25 UTC (permalink / raw)
To: Stephen Rothwell
Cc: alsa-devel, linuxppc-dev, Michael Hanselmann, lm-sensors,
Stelian Pop, Paul Mackerras, Johannes Berg
On Mon, 11 Aug 2008 17:04:32 +1000, Stephen Rothwell wrote:
>
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
> ---
> drivers/hwmon/ams/ams.h | 2 +-
> sound/aoa/soundbus/soundbus.h | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> These are the last two users of asm/of_device.h. If everyone is happy,
> we can put this through the powerpc tree. I have build tested for
> ppc64_defconfig and ppc6xx_defconfig (which uses the relevant drivers).
>
> After this we can remove the include of linux/of_device.h from
> asm/of_device.h
>
> diff --git a/drivers/hwmon/ams/ams.h b/drivers/hwmon/ams/ams.h
> index a6221e5..221ef69 100644
> --- a/drivers/hwmon/ams/ams.h
> +++ b/drivers/hwmon/ams/ams.h
> @@ -4,7 +4,7 @@
> #include <linux/mutex.h>
> #include <linux/spinlock.h>
> #include <linux/types.h>
> -#include <asm/of_device.h>
> +#include <linux/of_device.h>
>
> enum ams_irq {
> AMS_IRQ_FREEFALL = 0x01,
> diff --git a/sound/aoa/soundbus/soundbus.h b/sound/aoa/soundbus/soundbus.h
> index 622cd37..a0f223c 100644
> --- a/sound/aoa/soundbus/soundbus.h
> +++ b/sound/aoa/soundbus/soundbus.h
> @@ -8,7 +8,7 @@
> #ifndef __SOUNDBUS_H
> #define __SOUNDBUS_H
>
> -#include <asm/of_device.h>
> +#include <linux/of_device.h>
> #include <sound/pcm.h>
> #include <linux/list.h>
>
No objection from me, go ahead.
--
Jean Delvare
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [alsa-devel] [PATCH] powerpc/drivers: use linux/of_device.h instead of asm/of_device.h
2008-08-11 7:04 [PATCH] powerpc/drivers: use linux/of_device.h instead of asm/of_device.h Stephen Rothwell
2008-08-11 7:25 ` Jean Delvare
@ 2008-08-11 7:29 ` Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2008-08-11 7:29 UTC (permalink / raw)
To: Stephen Rothwell
Cc: alsa-devel, Jean, linuxppc-dev, Michael, Hanselmann, lm-sensors,
Stelian Pop, Paul Mackerras, Delvare, Johannes Berg
At Mon, 11 Aug 2008 17:04:32 +1000,
Stephen Rothwell wrote:
>
>
> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
> ---
> drivers/hwmon/ams/ams.h | 2 +-
> sound/aoa/soundbus/soundbus.h | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> These are the last two users of asm/of_device.h. If everyone is happy,
> we can put this through the powerpc tree. I have build tested for
> ppc64_defconfig and ppc6xx_defconfig (which uses the relevant drivers).
>
> After this we can remove the include of linux/of_device.h from
> asm/of_device.h
Looks good to me.
Acked-by: Takashi Iwai <tiwai@suse.de>
thanks,
Takashi
> diff --git a/drivers/hwmon/ams/ams.h b/drivers/hwmon/ams/ams.h
> index a6221e5..221ef69 100644
> --- a/drivers/hwmon/ams/ams.h
> +++ b/drivers/hwmon/ams/ams.h
> @@ -4,7 +4,7 @@
> #include <linux/mutex.h>
> #include <linux/spinlock.h>
> #include <linux/types.h>
> -#include <asm/of_device.h>
> +#include <linux/of_device.h>
>
> enum ams_irq {
> AMS_IRQ_FREEFALL = 0x01,
> diff --git a/sound/aoa/soundbus/soundbus.h b/sound/aoa/soundbus/soundbus.h
> index 622cd37..a0f223c 100644
> --- a/sound/aoa/soundbus/soundbus.h
> +++ b/sound/aoa/soundbus/soundbus.h
> @@ -8,7 +8,7 @@
> #ifndef __SOUNDBUS_H
> #define __SOUNDBUS_H
>
> -#include <asm/of_device.h>
> +#include <linux/of_device.h>
> #include <sound/pcm.h>
> #include <linux/list.h>
>
> --
> 1.5.6.3
>
> --
> Cheers,
> Stephen Rothwell sfr@canb.auug.org.au
> http://www.canb.auug.org.au/~sfr/
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-08-11 7:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-11 7:04 [PATCH] powerpc/drivers: use linux/of_device.h instead of asm/of_device.h Stephen Rothwell
2008-08-11 7:25 ` Jean Delvare
2008-08-11 7:29 ` [alsa-devel] " Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).