25 Jan, 2016

1 commit


20 Oct, 2014

1 commit


11 Jul, 2014

1 commit

  • ARRAY_SIZE is more concise to use when the size of an array is divided
    by the size of its type or the size of its first element.

    The Coccinelle semantic patch that makes this change is as follows:

    //
    @@
    type T;
    T[] E;
    @@

    - (sizeof(E)/sizeof(T))
    + ARRAY_SIZE(E)
    //

    Signed-off-by: Himangi Saraogi
    [Geert: Also convert the MANUF definition]
    Signed-off-by: Geert Uytterhoeven

    Himangi Saraogi
     

26 Nov, 2013

5 commits


29 Jun, 2013

1 commit


02 May, 2013

1 commit

  • Supply accessor functions to set attributes in proc_dir_entry structs.

    The following are supplied: proc_set_size() and proc_set_user().

    Signed-off-by: David Howells
    Acked-by: Mauro Carvalho Chehab
    cc: linuxppc-dev@lists.ozlabs.org
    cc: linux-media@vger.kernel.org
    cc: netdev@vger.kernel.org
    cc: linux-wireless@vger.kernel.org
    cc: linux-pci@vger.kernel.org
    cc: netfilter-devel@vger.kernel.org
    cc: alsa-devel@alsa-project.org
    Signed-off-by: Al Viro

    David Howells
     

10 Apr, 2013

1 commit

  • The only part of proc_dir_entry the code outside of fs/proc
    really cares about is PDE(inode)->data. Provide a helper
    for that; static inline for now, eventually will be moved
    to fs/proc, along with the knowledge of struct proc_dir_entry
    layout.

    Signed-off-by: Al Viro

    Al Viro
     

23 Feb, 2013

1 commit


04 Jan, 2013

1 commit


16 Jul, 2012

1 commit


02 Jan, 2012

1 commit


01 Nov, 2011

1 commit


25 Oct, 2011

1 commit

  • zorro-driver.c: fix four checkpatch warnings of:
    WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable

    I had a cat. The cat was mine.
    His name was Zorro. Amiga is fine.

    Signed-off-by: Jim Rotmalm
    Signed-off-by: Geert Uytterhoeven

    Jim Rotmalm
     

23 Sep, 2011

1 commit

  • As the Amiga Zorro II address space is limited to 8.5 MiB and Zorro
    devices can contain only one BAR, several Amiga Zorro II expansion
    boards (mainly graphics cards) contain multiple Zorro devices: a small
    one for the control registers and one (or more) for the graphics memory.

    The conversion of cirrusfb to the new driver framework introduced a
    regression: the driver contains a zorro_driver for the first Zorro
    device, and uses the (old) zorro_find_device() call to find the second
    Zorro device.

    However, as the Zorro core calls device_register() as soon as a Zorro
    device is identified, it may not have identified the second Zorro device
    belonging to the same physical Zorro expansion card. Hence cirrusfb
    could no longer find the second part of the Picasso II graphics card,
    causing a NULL pointer dereference.

    Defer the registration of Zorro devices with the driver framework until
    all Zorro devices have been identified to fix this.

    Note that the alternative solution (modifying cirrusfb to register a
    zorro_driver for all Zorro devices belonging to a graphics card, instead
    of only for the first one, and adding a synchronization mechanism to
    defer initialization until all have been found), is not an option, as on
    some cards one device may be optional (e.g. the second bank of 2 MiB of
    graphics memory on the Picasso IV in Zorro II mode).

    Reported-by: Ingo Jürgensmann
    Signed-off-by: Geert Uytterhoeven
    Cc: stable@kernel.org
    Signed-off-by: Linus Torvalds

    Geert Uytterhoeven
     

18 Nov, 2010

1 commit


22 Oct, 2010

1 commit


10 Aug, 2010

2 commits


22 May, 2010

1 commit


18 May, 2010

2 commits


15 Feb, 2010

1 commit


06 Dec, 2009

1 commit


25 Mar, 2009

1 commit


13 Jan, 2009

3 commits


25 Jul, 2008

1 commit

  • James Bottomley warns that inclusion of linux/fs.h in a low level
    driver was always a danger signal. This patch moves
    memory_read_from_buffer() from fs.h to string.h and fixes includes in
    existing memory_read_from_buffer() users.

    Signed-off-by: Akinobu Mita
    Cc: James Bottomley
    Cc: Geert Uytterhoeven
    Cc: Zhang Rui
    Cc: Bob Moore
    Cc: Thomas Renninger
    Cc: Len Brown
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Akinobu Mita
     

21 Jul, 2008

3 commits


29 Apr, 2008

3 commits


27 Nov, 2007

1 commit


20 Oct, 2007

1 commit

  • * Convert files to UTF-8.

    * Also correct some people's names
    (one example is Eißfeldt, which was found in a source file.
    Given that the author used an ß at all in a source file
    indicates that the real name has in fact a 'ß' and not an 'ss',
    which is commonly used as a substitute for 'ß' when limited to
    7bit.)

    * Correct town names (Goettingen -> Göttingen)

    * Update Eberhard Mönkeberg's address (http://lkml.org/lkml/2007/1/8/313)

    Signed-off-by: Jan Engelhardt
    Signed-off-by: Adrian Bunk

    Jan Engelhardt