lkml.org 
[lkml]   [2016]   [Nov]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 17/22] NTB AMD: Alter Scratchpads interface to fit new NTB API
    Date
    Signed-off-by: Serge Semin <fancer.lancer@gmail.com>

    ---
    drivers/ntb/hw/amd/ntb_hw_amd.c | 14 +++++++-------
    1 file changed, 7 insertions(+), 7 deletions(-)

    diff --git a/drivers/ntb/hw/amd/ntb_hw_amd.c b/drivers/ntb/hw/amd/ntb_hw_amd.c
    index 9b3f78c..3479c2b 100644
    --- a/drivers/ntb/hw/amd/ntb_hw_amd.c
    +++ b/drivers/ntb/hw/amd/ntb_hw_amd.c
    @@ -458,30 +458,30 @@ static int amd_ntb_spad_write(struct ntb_dev *ntb,
    return 0;
    }

    -static u32 amd_ntb_peer_spad_read(struct ntb_dev *ntb, int idx)
    +static u32 amd_ntb_peer_spad_read(struct ntb_dev *ntb, int pidx, int sidx)
    {
    struct amd_ntb_dev *ndev = ntb_ndev(ntb);
    void __iomem *mmio = ndev->self_mmio;
    u32 offset;

    - if (idx < 0 || idx >= ndev->spad_count)
    + if (sidx < 0 || sidx >= ndev->spad_count)
    return -EINVAL;

    - offset = ndev->peer_spad + (idx << 2);
    + offset = ndev->peer_spad + (sidx << 2);
    return readl(mmio + AMD_SPAD_OFFSET + offset);
    }

    -static int amd_ntb_peer_spad_write(struct ntb_dev *ntb,
    - int idx, u32 val)
    +static int amd_ntb_peer_spad_write(struct ntb_dev *ntb, int pidx,
    + int sidx, u32 val)
    {
    struct amd_ntb_dev *ndev = ntb_ndev(ntb);
    void __iomem *mmio = ndev->self_mmio;
    u32 offset;

    - if (idx < 0 || idx >= ndev->spad_count)
    + if (sidx < 0 || sidx >= ndev->spad_count)
    return -EINVAL;

    - offset = ndev->peer_spad + (idx << 2);
    + offset = ndev->peer_spad + (sidx << 2);
    writel(val, mmio + AMD_SPAD_OFFSET + offset);

    return 0;
    --
    2.6.6
    \
     
     \ /
      Last update: 2016-11-29 18:20    [W:4.103 / U:0.032 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site