-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 86287 b: refs/heads/master c: 42bfad4 h: refs/heads/master i: 86285: 8a885a7 86283: a88516d 86279: c37ab44 86271: 5f505c2 v: v3
- Loading branch information
Michael Buesch
authored and
John W. Linville
committed
Feb 21, 2008
1 parent
59a634e
commit b20c43e
Showing
8 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 58ff70d4feae29cbb7ace410fa6585ef3afb44b6 | ||
refs/heads/master: 42bfad4f71637c4eb4791aa8062063c4a8526522 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* Sonics Silicon Backplane | ||
* Embedded systems support code | ||
* | ||
* Copyright 2005-2008, Broadcom Corporation | ||
* Copyright 2006-2008, Michael Buesch <mb@bu3sch.de> | ||
* | ||
* Licensed under the GNU/GPL. See COPYING for details. | ||
*/ | ||
|
||
#include <linux/ssb/ssb.h> | ||
#include <linux/ssb/ssb_embedded.h> | ||
|
||
|
||
int ssb_watchdog_timer_set(struct ssb_bus *bus, u32 ticks) | ||
{ | ||
if (ssb_chipco_available(&bus->chipco)) { | ||
ssb_chipco_watchdog_timer_set(&bus->chipco, ticks); | ||
return 0; | ||
} | ||
if (ssb_extif_available(&bus->extif)) { | ||
ssb_extif_watchdog_timer_set(&bus->extif, ticks); | ||
return 0; | ||
} | ||
return -ENODEV; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef LINUX_SSB_EMBEDDED_H_ | ||
#define LINUX_SSB_EMBEDDED_H_ | ||
|
||
#include <linux/types.h> | ||
#include <linux/ssb/ssb.h> | ||
|
||
|
||
extern int ssb_watchdog_timer_set(struct ssb_bus *bus, u32 ticks); | ||
|
||
#endif /* LINUX_SSB_EMBEDDED_H_ */ |