lkml.org 
[lkml]   [2017]   [Jul]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH V2 06/12] spmi: pmic-arb: replace the writel_relaxed with __raw_writel
    Date
    Replace the writel_relaxed with __raw_writel to avoid byte swapping
    in pmic_arb_write_data() function. That way the code is independent
    of the CPU endianness.

    Fixes: 111a10bf3e53 ("spmi: pmic-arb: rename spmi_pmic_arb_dev to
    spmi_pmic_arb")
    Signed-off-by: Kiran Gunda <kgunda@codeaurora.org>
    Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
    ---
    drivers/spmi/spmi-pmic-arb.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/spmi/spmi-pmic-arb.c b/drivers/spmi/spmi-pmic-arb.c
    index 340e7b8..a9d9359 100644
    --- a/drivers/spmi/spmi-pmic-arb.c
    +++ b/drivers/spmi/spmi-pmic-arb.c
    @@ -230,7 +230,7 @@ static void pmic_arb_write_data(struct spmi_pmic_arb *pmic_arb, const u8 *buf,
    u32 data = 0;

    memcpy(&data, buf, (bc & 3) + 1);
    - pmic_arb_base_write(pmic_arb, reg, data);
    + __raw_writel(data, pmic_arb->wr_base + reg);
    }

    static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
    --
    The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
    a Linux Foundation Collaborative Project
    \
     
     \ /
      Last update: 2017-07-28 09:14    [W:3.104 / U:0.072 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site