16 Oct, 2014

1 commit

  • The Linux kernel coding style guidelines suggest not using typedefs
    for structure types. This patch gets rid of the typedef for
    atiixp_ide_timing.

    The following Coccinelle semantic patch detects the case:

    @tn1@
    type td;
    @@

    typedef struct { ... } td;

    @script:python tf@
    td << tn1.td;
    tdres;
    @@

    coccinelle.tdres = td;

    @@
    type tn1.td;
    identifier tf.tdres;
    @@

    -typedef
    struct
    + tdres
    { ... }
    -td
    ;

    @@
    type tn1.td;
    identifier tf.tdres;
    @@

    -td
    + struct tdres

    Signed-off-by: Himangi Saraogi
    Acked-by: Julia Lawall
    Signed-off-by: David S. Miller

    Himangi Saraogi
     

04 Jan, 2013

1 commit

  • CONFIG_HOTPLUG is going away as an option. As a result, the __dev*
    markings need to be removed.

    This change removes the use of __devinit, __devexit_p, __devinitdata,
    __devinitconst, and __devexit from these drivers.

    Based on patches originally written by Bill Pemberton, but redone by me
    in order to handle some of the coding style issues better, by hand.

    Cc: Bill Pemberton
    Cc: "David S. Miller"
    Signed-off-by: Greg Kroah-Hartman

    Greg Kroah-Hartman
     

06 Oct, 2012

1 commit


19 Jan, 2010

2 commits


16 Oct, 2009

1 commit


11 Sep, 2009

1 commit


25 Mar, 2009

1 commit


26 Feb, 2009

1 commit

  • Fix missing parentheses so PIO/DMA timings for master device on the
    second channel are programmed correctly (IOW "8 0 24 16" offset values
    should be used instead of the current "8 0 16 16").

    [ The bug went unnoticed because after PIO/DMA timings get programmed
    incorrectly for the third device they are overwritten with timings
    for the fourth device and since BIOS should also program timings for
    the third device everything should work fine until suspend/resume
    cycle or user requested transfer mode changes. ]

    Signed-off-by: Roel Kluin
    Cc: Sergei Shtylyov
    Cc: Andrew Morton
    [bart: update patch description]
    Signed-off-by: Bartlomiej Zolnierkiewicz

    Roel Kluin
     

22 Oct, 2008

1 commit