lkml.org 
[lkml]   [2016]   [Nov]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 01/12] phy: rcar-gen3-usb2: Replace the deprecated extcon API
    Date
    This patch replaces the deprecated extcon API as following:
    - extcon_set_cable_state_() -> extcon_set_state_sync()

    Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
    ---
    drivers/phy/phy-rcar-gen3-usb2.c | 8 ++++----
    1 file changed, 4 insertions(+), 4 deletions(-)

    diff --git a/drivers/phy/phy-rcar-gen3-usb2.c b/drivers/phy/phy-rcar-gen3-usb2.c
    index bd2430d7339c..7f8081f157f4 100644
    --- a/drivers/phy/phy-rcar-gen3-usb2.c
    +++ b/drivers/phy/phy-rcar-gen3-usb2.c
    @@ -93,11 +93,11 @@ static void rcar_gen3_phy_usb2_work(struct work_struct *work)
    work);

    if (ch->extcon_host) {
    - extcon_set_cable_state_(ch->extcon, EXTCON_USB_HOST, true);
    - extcon_set_cable_state_(ch->extcon, EXTCON_USB, false);
    + extcon_set_state_sync(ch->extcon, EXTCON_USB_HOST, true);
    + extcon_set_state_sync(ch->extcon, EXTCON_USB, false);
    } else {
    - extcon_set_cable_state_(ch->extcon, EXTCON_USB_HOST, false);
    - extcon_set_cable_state_(ch->extcon, EXTCON_USB, true);
    + extcon_set_state_sync(ch->extcon, EXTCON_USB_HOST, false);
    + extcon_set_state_sync(ch->extcon, EXTCON_USB, true);
    }
    }

    --
    1.9.1
    \
     
     \ /
      Last update: 2016-11-30 07:00    [W:3.529 / U:0.072 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site