-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kernel: fallback-sprom: create separate header files
Create a separate header files fallback-sprom.h for BCMA and SSB Fallback SPROM Driver to add function prototypes to fallback-sprom.c as well. This prevents missing function prototype errors. Signed-off-by: Mieczyslaw Nalewaj <[email protected]> Link: openwrt/openwrt#17138 Signed-off-by: Robert Marko <[email protected]>
- Loading branch information
Showing
5 changed files
with
34 additions
and
23 deletions.
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
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,7 @@ | ||
#ifndef _FALLBACK_SPROM_H | ||
#define _FALLBACK_SPROM_H | ||
|
||
int __init bcma_fbs_register(void); | ||
int bcma_get_fallback_sprom(struct bcma_bus *dev, struct ssb_sprom *out); | ||
|
||
#endif /* _FALLBACK_SPROM_H */ |
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,7 @@ | ||
#ifndef _FALLBACK_SPROM_H | ||
#define _FALLBACK_SPROM_H | ||
|
||
int __init ssb_fbs_register(void); | ||
int ssb_get_fallback_sprom(struct ssb_bus *dev, struct ssb_sprom *out); | ||
|
||
#endif /* _FALLBACK_SPROM_H */ |
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