lkml.org 
[lkml]   [2020]   [Mar]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [PATCH net-next 6/9] net: phy: add backplane kr driver support
    > +static u32 le_ioread32(void __iomem *reg)
    > +{
    > + return ioread32(reg);
    > +}
    > +
    > +static void le_iowrite32(u32 value, void __iomem *reg)
    > +{
    > + iowrite32(value, reg);
    > +}
    > +
    > +static u32 be_ioread32(void __iomem *reg)
    > +{
    > + return ioread32be(reg);
    > +}
    > +
    > +static void be_iowrite32(u32 value, void __iomem *reg)
    > +{
    > + iowrite32be(value, reg);
    > +}

    This is very surprising to me. I've not got my head around the
    structure of this code yet, but i'm surprised to see memory mapped
    access functions in generic code.

    Andrew

    \
     
     \ /
      Last update: 2020-03-27 02:07    [W:4.121 / U:0.636 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site