Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966325AbbD2OEw (ORCPT ); Wed, 29 Apr 2015 10:04:52 -0400 Received: from mail-wi0-f177.google.com ([209.85.212.177]:34900 "EHLO mail-wi0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966188AbbD2OEv (ORCPT ); Wed, 29 Apr 2015 10:04:51 -0400 From: Valentin Rothberg To: nsekhar@ti.com, khilman@deeprootsystems.com, linux@arm.linux.org.uk, linux-kernel@vger.kernel.org Cc: Valentin Rothberg Subject: [PATCH] arch/arm/mach-davinci/usb.c: correct C comment on ARCH_DAVINCI_DA8XX Date: Wed, 29 Apr 2015 16:04:41 +0200 Message-Id: <1430316281-511-1-git-send-email-valentinrothberg@gmail.com> X-Mailer: git-send-email 2.1.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 996 Lines: 28 The previous #ifdef block depends on ARCH_DAVINCI_DA8XX, not on DAVINCI_DA8XX. Signed-off-by: Valentin Rothberg --- I detected this issue with scripts/checkkconfigsymbols.py --- arch/arm/mach-davinci/usb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-davinci/usb.c b/arch/arm/mach-davinci/usb.c index b0a6b522575f..0a25200baebd 100644 --- a/arch/arm/mach-davinci/usb.c +++ b/arch/arm/mach-davinci/usb.c @@ -172,4 +172,4 @@ int __init da8xx_register_usb11(struct da8xx_ohci_root_hub *pdata) da8xx_usb11_device.dev.platform_data = pdata; return platform_device_register(&da8xx_usb11_device); } -#endif /* CONFIG_DAVINCI_DA8XX */ +#endif /* CONFIG_ARCH_DAVINCI_DA8XX */ -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/