mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
ffb910d7b8
With commit 02b4e2756e01c623cc4dbceae4b07be75252db5b ("ARM: v7 setup function should invalidate L1 cache"), the default secondary_startup function for ARMv7 CPUs does invalidate the L1 cache, which was the sole reason why BCM63xx had to have its own secondary_startup implementation. Now that the secondary_startup takes care of this, we can completely remove that code. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
9 lines
161 B
C
9 lines
161 B
C
#ifndef __BCM63XX_SMP_H
|
|
#define __BCM63XX_SMP_H
|
|
|
|
struct device_node;
|
|
|
|
extern int bcm63xx_pmb_power_on_cpu(struct device_node *dn);
|
|
|
|
#endif /* __BCM63XX_SMP_H */
|