From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0717CC3A5A8 for ; Wed, 4 Sep 2019 18:01:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C9B40233FF for ; Wed, 4 Sep 2019 18:01:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1567620096; bh=icEiS8cubELpyNGEJlP8+yAruHA3xIZFZjeSfrfEdKE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=jcpRthvtYuRFhzl4Dooup6VcKPbkOmikJAAQjshRGoPAimrD53coOuiHLpv8swaVW 3oJ7ep0OK3hVz5/XmP8scDLu8x8A6FqabMp1rQU3/XIvHR6P9Xw3/8T3EpHJ2vVqiS aqxb+c8eUaY/Gf9ITRLYYFRf3ZxozwmVbnTbn02Q= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388619AbfIDSBg (ORCPT ); Wed, 4 Sep 2019 14:01:36 -0400 Received: from mail.kernel.org ([198.145.29.99]:41230 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388592AbfIDSBf (ORCPT ); Wed, 4 Sep 2019 14:01:35 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 6267C2339E; Wed, 4 Sep 2019 18:01:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1567620094; bh=icEiS8cubELpyNGEJlP8+yAruHA3xIZFZjeSfrfEdKE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=1Z0ehgwdPptRz6H6doDVsNHey//WGCCaaYHV+XGm6xEzFMNnoRVb3azPHL3UhOzyE Mn7IHD9k9GByg5NOdBVU8tpRvRV2AZ6q6sbJ/Se00PTPM5UYGE5CsyFjzJdL4OANrU m744mxpjLOhYPeLPiwC5jZKWHQKz0pcLZvUOOTlc= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Geert Uytterhoeven , Yoshihiro Shimoda Subject: [PATCH 4.9 69/83] usb: host: xhci: rcar: Fix typo in compatible string matching Date: Wed, 4 Sep 2019 19:54:01 +0200 Message-Id: <20190904175309.680342174@linuxfoundation.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20190904175303.488266791@linuxfoundation.org> References: <20190904175303.488266791@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Geert Uytterhoeven commit 636bd02a7ba9025ff851d0cfb92768c8fa865859 upstream. It's spelled "renesas", not "renensas". Due to this typo, RZ/G1M and RZ/G1N were not covered by the check. Fixes: 2dc240a3308b ("usb: host: xhci: rcar: retire use of xhci_plat_type_is()") Signed-off-by: Geert Uytterhoeven Cc: stable Reviewed-by: Yoshihiro Shimoda Link: https://lore.kernel.org/r/20190827125112.12192-1-geert+renesas@glider.be Signed-off-by: Greg Kroah-Hartman --- drivers/usb/host/xhci-rcar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/usb/host/xhci-rcar.c +++ b/drivers/usb/host/xhci-rcar.c @@ -84,7 +84,7 @@ static int xhci_rcar_is_gen2(struct devi return of_device_is_compatible(node, "renesas,xhci-r8a7790") || of_device_is_compatible(node, "renesas,xhci-r8a7791") || of_device_is_compatible(node, "renesas,xhci-r8a7793") || - of_device_is_compatible(node, "renensas,rcar-gen2-xhci"); + of_device_is_compatible(node, "renesas,rcar-gen2-xhci"); } static int xhci_rcar_is_gen3(struct device *dev)