mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
As reported by lkp:
arch/powerpc/platforms/83xx/km83xx.c:183:19: error: 'mpc83xx_setup_pci' undeclared here (not in a function)
183 | .discover_phbs = mpc83xx_setup_pci,
| ^~~~~~~~~~~~~~~~~
| mpc83xx_setup_arch
There is a stub defined for the CONFIG_PCI=n case, but now that
mpc83xx_setup_pci() is being assigned to discover_phbs the correct
empty value is NULL.
Fixes:
|
||
|---|---|---|
| .. | ||
| asp834x.c | ||
| Kconfig | ||
| km83xx.c | ||
| Makefile | ||
| mcu_mpc8349emitx.c | ||
| misc.c | ||
| mpc83xx.h | ||
| mpc830x_rdb.c | ||
| mpc831x_rdb.c | ||
| mpc832x_mds.c | ||
| mpc832x_rdb.c | ||
| mpc834x_itx.c | ||
| mpc834x_mds.c | ||
| mpc836x_mds.c | ||
| mpc836x_rdk.c | ||
| mpc837x_mds.c | ||
| mpc837x_rdb.c | ||
| suspend-asm.S | ||
| suspend.c | ||
| usb.c | ||