diff options
| -rw-r--r-- | .mailmap | 1 | ||||
| -rw-r--r-- | arch/arm/mach-bcm283x/msg.c | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -32,6 +32,7 @@ Jagan Teki <[email protected]> Igor Opaniuk <[email protected]> <[email protected]> Igor Opaniuk <[email protected]> <[email protected]> Markus Klotzbuecher <[email protected]> +Nicolas Saenz Julienne <[email protected]> <[email protected]> Patrice Chotard <[email protected]> <[email protected]> Patrick Delaunay <[email protected]> <[email protected]> Paul Burton <[email protected]> <[email protected]> diff --git a/arch/arm/mach-bcm283x/msg.c b/arch/arm/mach-bcm283x/msg.c index 347aece3cd8..345f7fe2b77 100644 --- a/arch/arm/mach-bcm283x/msg.c +++ b/arch/arm/mach-bcm283x/msg.c @@ -170,6 +170,12 @@ int bcm2711_notify_vl805_reset(void) ALLOC_CACHE_ALIGN_BUFFER(struct msg_notify_vl805_reset, msg_notify_vl805_reset, 1); int ret; + static int done = false; + + if (done) + return 0; + + done = true; BCM2835_MBOX_INIT_HDR(msg_notify_vl805_reset); BCM2835_MBOX_INIT_TAG(&msg_notify_vl805_reset->dev_addr, |
