* [PATCH] watchdog: Fix build error in txx9wdt.c
@ 2012-03-26 5:02 ` Axel Lin
0 siblings, 0 replies; 3+ messages in thread
From: Axel Lin @ 2012-03-26 5:02 UTC (permalink / raw)
To: linux-kernel
Cc: Atsushi Nemoto, Ralf Baechle, Wim Van Sebroeck, linux-watchdog
we need to get clk_get_rate(txx9_imclk) before using WD_MAX_TIMEOUT.
This patch fixes below build errors:
CC drivers/watchdog/txx9wdt.o
drivers/watchdog/txx9wdt.c:104: error: initializer element is not constant
drivers/watchdog/txx9wdt.c:104: error: (near initialization for ‘txx9wdt.max_timeout’)
make[2]: *** [drivers/watchdog/txx9wdt.o] Error 1
make[1]: *** [drivers/watchdog] Error 2
make: *** [drivers] Error 2
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
drivers/watchdog/txx9wdt.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/watchdog/txx9wdt.c b/drivers/watchdog/txx9wdt.c
index f9afe2f..98e1637 100644
--- a/drivers/watchdog/txx9wdt.c
+++ b/drivers/watchdog/txx9wdt.c
@@ -100,8 +100,6 @@ static const struct watchdog_ops txx9wdt_ops = {
static struct watchdog_device txx9wdt = {
.info = &txx9wdt_info,
.ops = &txx9wdt_ops,
- .min_timeout = 1,
- .max_timeout = WD_MAX_TIMEOUT,
};
static int __init txx9wdt_probe(struct platform_device *dev)
@@ -132,6 +130,8 @@ static int __init txx9wdt_probe(struct platform_device *dev)
if (timeout < 1 || timeout > WD_MAX_TIMEOUT)
timeout = TIMER_MARGIN;
txx9wdt.timeout = timeout;
+ txx9wdt.min_timeout = 1;
+ txx9wdt.max_timeout = WD_MAX_TIMEOUT;
watchdog_set_nowayout(&txx9wdt, nowayout);
ret = watchdog_register_device(&txx9wdt);
--
1.7.5.4
--
To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] watchdog: Fix build error in txx9wdt.c
@ 2012-03-26 5:02 ` Axel Lin
0 siblings, 0 replies; 3+ messages in thread
From: Axel Lin @ 2012-03-26 5:02 UTC (permalink / raw)
To: linux-kernel
Cc: Atsushi Nemoto, Ralf Baechle, Wim Van Sebroeck, linux-watchdog
we need to get clk_get_rate(txx9_imclk) before using WD_MAX_TIMEOUT.
This patch fixes below build errors:
CC drivers/watchdog/txx9wdt.o
drivers/watchdog/txx9wdt.c:104: error: initializer element is not constant
drivers/watchdog/txx9wdt.c:104: error: (near initialization for ‘txx9wdt.max_timeout’)
make[2]: *** [drivers/watchdog/txx9wdt.o] Error 1
make[1]: *** [drivers/watchdog] Error 2
make: *** [drivers] Error 2
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
drivers/watchdog/txx9wdt.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/watchdog/txx9wdt.c b/drivers/watchdog/txx9wdt.c
index f9afe2f..98e1637 100644
--- a/drivers/watchdog/txx9wdt.c
+++ b/drivers/watchdog/txx9wdt.c
@@ -100,8 +100,6 @@ static const struct watchdog_ops txx9wdt_ops = {
static struct watchdog_device txx9wdt = {
.info = &txx9wdt_info,
.ops = &txx9wdt_ops,
- .min_timeout = 1,
- .max_timeout = WD_MAX_TIMEOUT,
};
static int __init txx9wdt_probe(struct platform_device *dev)
@@ -132,6 +130,8 @@ static int __init txx9wdt_probe(struct platform_device *dev)
if (timeout < 1 || timeout > WD_MAX_TIMEOUT)
timeout = TIMER_MARGIN;
txx9wdt.timeout = timeout;
+ txx9wdt.min_timeout = 1;
+ txx9wdt.max_timeout = WD_MAX_TIMEOUT;
watchdog_set_nowayout(&txx9wdt, nowayout);
ret = watchdog_register_device(&txx9wdt);
--
1.7.5.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] watchdog: Fix build error in txx9wdt.c
2012-03-26 5:02 ` Axel Lin
(?)
@ 2012-03-26 6:37 ` Wolfram Sang
-1 siblings, 0 replies; 3+ messages in thread
From: Wolfram Sang @ 2012-03-26 6:37 UTC (permalink / raw)
To: Axel Lin
Cc: linux-kernel, Atsushi Nemoto, Ralf Baechle, Wim Van Sebroeck,
linux-watchdog
[-- Attachment #1: Type: text/plain, Size: 775 bytes --]
On Mon, Mar 26, 2012 at 01:02:14PM +0800, Axel Lin wrote:
> we need to get clk_get_rate(txx9_imclk) before using WD_MAX_TIMEOUT.
>
> This patch fixes below build errors:
> CC drivers/watchdog/txx9wdt.o
> drivers/watchdog/txx9wdt.c:104: error: initializer element is not constant
> drivers/watchdog/txx9wdt.c:104: error: (near initialization for ‘txx9wdt.max_timeout’)
> make[2]: *** [drivers/watchdog/txx9wdt.o] Error 1
> make[1]: *** [drivers/watchdog] Error 2
> make: *** [drivers] Error 2
>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
--
Pengutronix e.K. | Wolfram Sang |
Industrial Linux Solutions | http://www.pengutronix.de/ |
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-03-26 6:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-26 5:02 [PATCH] watchdog: Fix build error in txx9wdt.c Axel Lin
2012-03-26 5:02 ` Axel Lin
2012-03-26 6:37 ` Wolfram Sang
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.