openwrt/target/linux/generic/files/drivers/ssb/fallback-sprom.h
Mieczyslaw Nalewaj 22d2aa65e8 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 <namiltd@yahoo.com>
Link: https://github.com/openwrt/openwrt/pull/17138
Signed-off-by: Robert Marko <robimarko@gmail.com>
2024-12-08 13:32:46 +01:00

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 */