mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-04 04:54:18 +00:00
22d2aa65e8
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 <namiltd@yahoo.com> Link: https://github.com/openwrt/openwrt/pull/17138 Signed-off-by: Robert Marko <robimarko@gmail.com>
8 lines
192 B
C
8 lines
192 B
C
#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 */
|