* [PATCH] OMAP1: PM: fix omap1 build
@ 2011-02-07 12:22 G, Manjunath Kondaiah
2011-02-12 0:13 ` Kevin Hilman
0 siblings, 1 reply; 2+ messages in thread
From: G, Manjunath Kondaiah @ 2011-02-07 12:22 UTC (permalink / raw)
To: linux-omap; +Cc: linux-arm-kernel, khilman
The omap1_defconfig build on pm branch throughs below build error:
CC drivers/i2c/busses/i2c-omap.o
drivers/i2c/busses/i2c-omap.c:1173: error: lvalue required as unary '&' operand
make[3]: *** [drivers/i2c/busses/i2c-omap.o] Error 1
make[2]: *** [drivers/i2c/busses] Error 2
make[1]: *** [drivers/i2c] Error 2
make: *** [drivers] Error 2
Fix above build error. Boot tested on omap1710(h3) board.
Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
---
drivers/i2c/busses/i2c-omap.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
index 0541df9..8db456f 100644
--- a/drivers/i2c/busses/i2c-omap.c
+++ b/drivers/i2c/busses/i2c-omap.c
@@ -1170,7 +1170,7 @@ static struct platform_driver omap_i2c_driver = {
.driver = {
.name = "omap_i2c",
.owner = THIS_MODULE,
- .pm = &omap_i2c_pm_ops,
+ .pm = omap_i2c_pm_ops,
},
};
--
1.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] OMAP1: PM: fix omap1 build
2011-02-07 12:22 [PATCH] OMAP1: PM: fix omap1 build G, Manjunath Kondaiah
@ 2011-02-12 0:13 ` Kevin Hilman
0 siblings, 0 replies; 2+ messages in thread
From: Kevin Hilman @ 2011-02-12 0:13 UTC (permalink / raw)
To: G, Manjunath Kondaiah; +Cc: linux-omap, linux-arm-kernel
Hi Manju,
"G, Manjunath Kondaiah" <manjugk@ti.com> writes:
> The omap1_defconfig build on pm branch throughs below build error:
>
> CC drivers/i2c/busses/i2c-omap.o
> drivers/i2c/busses/i2c-omap.c:1173: error: lvalue required as unary '&' operand
> make[3]: *** [drivers/i2c/busses/i2c-omap.o] Error 1
> make[2]: *** [drivers/i2c/busses] Error 2
> make[1]: *** [drivers/i2c] Error 2
> make: *** [drivers] Error 2
>
> Fix above build error. Boot tested on omap1710(h3) board.
>
> Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
> ---
> drivers/i2c/busses/i2c-omap.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-omap.c b/drivers/i2c/busses/i2c-omap.c
> index 0541df9..8db456f 100644
> --- a/drivers/i2c/busses/i2c-omap.c
> +++ b/drivers/i2c/busses/i2c-omap.c
> @@ -1170,7 +1170,7 @@ static struct platform_driver omap_i2c_driver = {
> .driver = {
> .name = "omap_i2c",
> .owner = THIS_MODULE,
> - .pm = &omap_i2c_pm_ops,
> + .pm = omap_i2c_pm_ops,
> },
> };
This might fix the compile on OMAP1, but it then breaks the build for
OMAP2+ when CONFIG_PM is enabled.
This isn't really an OMAP1 issue, rather it's a !CONFIG_PM issue.
The right fix will be to make the #else clause of the #ifdef CONFIG_PM
correct for all OMAPs.
Also, please Cc Ben Dooks and the linux-i2c list on I2C driver patches
(MAINTAINERS entry below.)
Thanks,
Kevin
I2C SUBSYSTEM
M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
L: linux-i2c@vger.kernel.org
W: http://i2c.wiki.kernel.org/
T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
T: git git://git.fluff.org/bjdooks/linux.git
S: Maintained
F: Documentation/i2c/
F: drivers/i2c/
F: include/linux/i2c.h
F: include/linux/i2c-*.h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-02-12 0:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-07 12:22 [PATCH] OMAP1: PM: fix omap1 build G, Manjunath Kondaiah
2011-02-12 0:13 ` Kevin Hilman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox