mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
ffb910d7b8
With commit 02b4e2756e
("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>
8 lines
161 B
C
8 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 */
|