From e2788afe672d06d4ee92220c4d7d39a83b4f90ee Mon Sep 17 00:00:00 2001 From: Andre Heider Date: Tue, 22 Oct 2013 22:27:20 +0200 Subject: [PATCH] ARM: bcm2835: add missing mbox overscan response field Add the missing "right" field to struct bcm2835_mbox_tag_overscan. Signed-off-by: Andre Heider Acked-by: Stephen Warren Acked-by: Albert ARIBAUD --- arch/arm/include/asm/arch-bcm2835/mbox.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-bcm2835/mbox.h b/arch/arm/include/asm/arch-bcm2835/mbox.h index 24abe57959..6b806ec57f 100644 --- a/arch/arm/include/asm/arch-bcm2835/mbox.h +++ b/arch/arm/include/asm/arch-bcm2835/mbox.h @@ -350,6 +350,7 @@ struct bcm2835_mbox_tag_overscan { u32 top; u32 bottom; u32 left; + u32 right; } resp; } body; };