From: Laurent Pinchart Date: Tue, 26 Mar 2013 00:44:52 +0000 (+0100) Subject: sh-pfc: Fix compiler warning when BUG() X-Git-Tag: next-20130402~10^2^2~6^2~27^2~31 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1c69182592f42989be81ed8cb79da7366d9fa606;p=karo-tx-linux.git sh-pfc: Fix compiler warning when BUG() The sh_pfc_phys_to_virt() function ends with a BUG() statement without a return. When CONFIG_BUG isn't set the function will thus have no return value. Fix it. Signed-off-by: Laurent Pinchart Signed-off-by: Simon Horman --- diff --git a/drivers/pinctrl/sh-pfc/core.c b/drivers/pinctrl/sh-pfc/core.c index feef89792568..97e6ea3147e0 100644 --- a/drivers/pinctrl/sh-pfc/core.c +++ b/drivers/pinctrl/sh-pfc/core.c @@ -72,6 +72,7 @@ static void __iomem *sh_pfc_phys_to_virt(struct sh_pfc *pfc, } BUG(); + return NULL; } int sh_pfc_get_pin_index(struct sh_pfc *pfc, unsigned int pin)