From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755006AbdC3Fdc (ORCPT ); Thu, 30 Mar 2017 01:33:32 -0400 Received: from lelnx193.ext.ti.com ([198.47.27.77]:21687 "EHLO lelnx193.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754801AbdC3Fdb (ORCPT ); Thu, 30 Mar 2017 01:33:31 -0400 Subject: Re: [PATCH] phy: rockchip-inno-usb2: fix spelling mistake: "connecetd" -> "connected" To: Colin King , Heiko Stuebner , , References: <20170222233052.8016-1-colin.king@canonical.com> CC: From: Kishon Vijay Abraham I Message-ID: <07c054ae-69bf-6348-b7a6-afa367358ba4@ti.com> Date: Thu, 30 Mar 2017 11:02:41 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 In-Reply-To: <20170222233052.8016-1-colin.king@canonical.com> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thursday 23 February 2017 05:00 AM, Colin King wrote: > From: Colin Ian King > > trivial fix to spelling mistake in dev_dbg message, also rejoin > lines to clean up checkpatch warning > > Signed-off-by: Colin Ian King merged, thanks. -Kishon > --- > drivers/phy/phy-rockchip-inno-usb2.c | 9 +++------ > 1 file changed, 3 insertions(+), 6 deletions(-) > > diff --git a/drivers/phy/phy-rockchip-inno-usb2.c b/drivers/phy/phy-rockchip-inno-usb2.c > index 4ea95c2..761a921 100644 > --- a/drivers/phy/phy-rockchip-inno-usb2.c > +++ b/drivers/phy/phy-rockchip-inno-usb2.c > @@ -554,8 +554,7 @@ static void rockchip_usb2phy_otg_sm_work(struct work_struct *work) > case USB_CHG_STATE_DETECTED: > switch (rphy->chg_type) { > case POWER_SUPPLY_TYPE_USB: > - dev_dbg(&rport->phy->dev, > - "sdp cable is connecetd\n"); > + dev_dbg(&rport->phy->dev, "sdp cable is connected\n"); > rockchip_usb2phy_power_on(rport->phy); > rport->state = OTG_STATE_B_PERIPHERAL; > notify_charger = true; > @@ -563,16 +562,14 @@ static void rockchip_usb2phy_otg_sm_work(struct work_struct *work) > cable = EXTCON_CHG_USB_SDP; > break; > case POWER_SUPPLY_TYPE_USB_DCP: > - dev_dbg(&rport->phy->dev, > - "dcp cable is connecetd\n"); > + dev_dbg(&rport->phy->dev, "dcp cable is connected\n"); > rockchip_usb2phy_power_off(rport->phy); > notify_charger = true; > sch_work = true; > cable = EXTCON_CHG_USB_DCP; > break; > case POWER_SUPPLY_TYPE_USB_CDP: > - dev_dbg(&rport->phy->dev, > - "cdp cable is connecetd\n"); > + dev_dbg(&rport->phy->dev, "cdp cable is connected\n"); > rockchip_usb2phy_power_on(rport->phy); > rport->state = OTG_STATE_B_PERIPHERAL; > notify_charger = true; >