26 Feb, 2010

1 commit


18 Feb, 2010

2 commits


13 Feb, 2010

1 commit


04 Jan, 2010

1 commit

  • lp->rx_skb has type struct sk_buff **, not struct sk_buff *, so the
    elements of the array should have pointer type, not structure type.

    The semantic patch that makes this change is as follows:
    (http://coccinelle.lip6.fr/)

    //
    @disable sizeof_type_expr@
    type T;
    T **x;
    @@

    x =

    //

    Signed-off-by: Julia Lawall
    Signed-off-by: David S. Miller

    Julia Lawall
     

04 Dec, 2009

1 commit

  • Only files where David Miller is the primary git-signer.
    wireless, wimax, ixgbe, etc are not modified.

    Compile tested x86 allyesconfig only
    Not all files compiled (not x86 compatible)

    Added a few > 80 column lines, which I ignored.
    Existing checkpatch complaints ignored.

    Signed-off-by: Joe Perches
    Signed-off-by: David S. Miller

    Joe Perches
     

21 Sep, 2009

1 commit


06 Jul, 2009

1 commit


27 Apr, 2009

1 commit

  • This patch adds support for the Xilinx ll_temac 10/100/1000 Ethernet
    device. The ll_temac ipcore is typically used on Xilinx Virtex and
    Spartan designs attached to either a PowerPC 4xx or Microblaze
    processor.

    At the present moment, this driver only works with Virtex5 PowerPC
    designs because it assumes DCR is used to access the DMA registers.
    However, the low level access to DMA registers is abstracted and
    it should be easy to adapt for the other implementations.

    I'm posting this driver now as an RFC. There are still some things that
    need to be tightened up, but it does appear to be stable.

    Derived from driver code written by Yoshio Kashiwagi and David H. Lynch Jr.

    Tested on Xilinx ML507 eval board with Base System Builder generated
    FPGA design.

    Signed-off-by: Grant Likely
    Acked-by: Andy Fleming
    Signed-off-by: David S. Miller

    Grant Likely