printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / bcm47xx_sprom.h
blobf8254fd53e15f826c31648825bbbf23d2f560f26
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 */
5 #ifndef __BCM47XX_SPROM_H
6 #define __BCM47XX_SPROM_H
8 #include <linux/types.h>
9 #include <linux/kernel.h>
10 #include <linux/vmalloc.h>
12 struct ssb_sprom;
14 #ifdef CONFIG_BCM47XX_SPROM
15 void bcm47xx_fill_sprom(struct ssb_sprom *sprom, const char *prefix,
16 bool fallback);
17 int bcm47xx_sprom_register_fallbacks(void);
18 #else
19 static inline void bcm47xx_fill_sprom(struct ssb_sprom *sprom,
20 const char *prefix,
21 bool fallback)
25 static inline int bcm47xx_sprom_register_fallbacks(void)
27 return -ENOTSUPP;
29 #endif
31 #endif /* __BCM47XX_SPROM_H */