diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-02-19 06:41:30 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-02-20 20:11:49 -0500 |
commit | 42bfad4f71637c4eb4791aa8062063c4a8526522 (patch) | |
tree | 42c8c52d953aaa8f0418084af1e60c15e900488c /drivers/ssb/embedded.c | |
parent | 58ff70d4feae29cbb7ace410fa6585ef3afb44b6 (diff) |
ssb: Fix watchdog access for devices without a chipcommon
This fixes the SSB watchdog access for devices without a chipcommon.
These devices have the watchdog on the extif.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/ssb/embedded.c')
-rw-r--r-- | drivers/ssb/embedded.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/drivers/ssb/embedded.c b/drivers/ssb/embedded.c new file mode 100644 index 000000000000..751f58ac612c --- /dev/null +++ b/drivers/ssb/embedded.c | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * Sonics Silicon Backplane | ||
3 | * Embedded systems support code | ||
4 | * | ||
5 | * Copyright 2005-2008, Broadcom Corporation | ||
6 | * Copyright 2006-2008, Michael Buesch <mb@bu3sch.de> | ||
7 | * | ||
8 | * Licensed under the GNU/GPL. See COPYING for details. | ||
9 | */ | ||
10 | |||
11 | #include <linux/ssb/ssb.h> | ||
12 | #include <linux/ssb/ssb_embedded.h> | ||
13 | |||
14 | |||
15 | int ssb_watchdog_timer_set(struct ssb_bus *bus, u32 ticks) | ||
16 | { | ||
17 | if (ssb_chipco_available(&bus->chipco)) { | ||
18 | ssb_chipco_watchdog_timer_set(&bus->chipco, ticks); | ||
19 | return 0; | ||
20 | } | ||
21 | if (ssb_extif_available(&bus->extif)) { | ||
22 | ssb_extif_watchdog_timer_set(&bus->extif, ticks); | ||
23 | return 0; | ||
24 | } | ||
25 | return -ENODEV; | ||
26 | } | ||