From patchwork Fri Jun 12 13:16:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Thierry Reding X-Patchwork-Id: 6598761 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 9FA1B9F2F4 for ; Fri, 12 Jun 2015 13:17:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CA75420684 for ; Fri, 12 Jun 2015 13:17:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DD5F2204A2 for ; Fri, 12 Jun 2015 13:17:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755466AbbFLNRE (ORCPT ); Fri, 12 Jun 2015 09:17:04 -0400 Received: from mail-qc0-f175.google.com ([209.85.216.175]:35820 "EHLO mail-qc0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754755AbbFLNRA (ORCPT ); Fri, 12 Jun 2015 09:17:00 -0400 Received: by qcjq9 with SMTP id q9so5500342qcj.2; Fri, 12 Jun 2015 06:16:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:mime-version:content-type :content-transfer-encoding; bh=NAXvhk6lCQusTwA1WNGawaPCm1BsfSqD2WH5XC+Yhp4=; b=Gjln93NXgysEejvwtCx02VJDRuCyZ3591rWLvrLT2MIqDTmkSIyRMVbLF6kb3u1WYm q0iNeurQYpJba7iRsmNUW+ziwRBwJp5fRVXcFNUyALxjD7R1DH2GjtOTZ1c4neJgId15 AHDMz3HTcZevKKPMmAAMEwWSiGTriYoHThKgQwZj9OgMdU6LrK9DfxDfYcjfGaef6/Tx mep2i+X5iZXVwLfFJoo3PiklHzk7oHB6STkdNJr0vTp7+TfLgglPOF1Q+QZEz8N3lyW4 o1HXN7aTBFsvdeNrrX3btO4f+uaW160TJzXOhQ+QruCe3Bb4DJDVMEvknwHjWX/o1hXT NEIQ== X-Received: by 10.55.16.67 with SMTP id a64mr30391497qkh.31.1434115019721; Fri, 12 Jun 2015 06:16:59 -0700 (PDT) Received: from localhost ([216.228.120.20]) by mx.google.com with ESMTPSA id f15sm1649038qkh.23.2015.06.12.06.16.58 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 12 Jun 2015 06:16:59 -0700 (PDT) From: Thierry Reding To: Felipe Balbi , Greg Kroah-Hartman Cc: linux-usb@vger.kernel.org, linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] usb: dwc3: Use ASCII space in Kconfig Date: Fri, 12 Jun 2015 15:16:21 +0200 Message-Id: <1434114981-2296-1-git-send-email-thierry.reding@gmail.com> X-Mailer: git-send-email 2.4.1 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Thierry Reding The USB_DWC3_ULPI Kconfig entry uses a UTF-8 non-breaking space (0xca20) instead of a regular ASCII space (0x20). Commit 2e0d737fc76f ("kconfig: don't silently ignore unhandled characters") exposes this by warning about unhandled characters. Signed-off-by: Thierry Reding --- drivers/usb/dwc3/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/dwc3/Kconfig b/drivers/usb/dwc3/Kconfig index 473bfaa96c30..dede32e809b6 100644 --- a/drivers/usb/dwc3/Kconfig +++ b/drivers/usb/dwc3/Kconfig @@ -13,7 +13,7 @@ if USB_DWC3 config USB_DWC3_ULPI bool "Register ULPI PHY Interface" - depends on USB_ULPI_BUS=y || USB_ULPI_BUS=USB_DWC3 + depends on USB_ULPI_BUS=y || USB_ULPI_BUS=USB_DWC3 help Select this if you have ULPI type PHY attached to your DWC3 controller.