1. 23 10月, 2008 2 次提交
  2. 23 7月, 2008 1 次提交
    • V
      x86: consolidate header guards · 77ef50a5
      Vegard Nossum 提交于
      This patch is the result of an automatic script that consolidates the
      format of all the headers in include/asm-x86/.
      
      The format:
      
      1. No leading underscore. Names with leading underscores are reserved.
      2. Pathname components are separated by two underscores. So we can
         distinguish between mm_types.h and mm/types.h.
      3. Everything except letters and numbers are turned into single
         underscores.
      Signed-off-by: NVegard Nossum <vegard.nossum@gmail.com>
      77ef50a5
  3. 09 7月, 2008 2 次提交
  4. 07 2月, 2008 1 次提交
    • J
      Fix __const_udelay declaration and definition mismatches · 5ab24c79
      Jeff Dike 提交于
      The declaration and implementation of __const_udelay use different
      names for the parameter on a number of architectures:
      
      include/asm-avr32/delay.h:15:extern void __const_udelay(unsigned long usecs);
      arch/avr32/lib/delay.c:39:inline void __const_udelay(unsigned long xloops)
      
      include/asm-sh/delay.h:15:extern void __const_udelay(unsigned long usecs);
      arch/sh/lib/delay.c:22:inline void __const_udelay(unsigned long xloops)
      
      include/asm-m32r/delay.h:15:extern void __const_udelay(unsigned long usecs);
      arch/m32r/lib/delay.c:58:void __const_udelay(unsigned long xloops)
      
      include/asm-x86/delay.h:16:extern void __const_udelay(unsigned long usecs);
      arch/x86/lib/delay_32.c:82:inline void __const_udelay(unsigned long xloops)
      arch/x86/lib/delay_64.c:46:inline void __const_udelay(unsigned long xloops)
      
      The units of the parameter isn't usecs, so that name is definitely
      wrong.  It's also not exactly loops, so I suppose xloops is an OK
      name.
      
      This patch changes these names from usecs to xloops.
      Signed-off-by: NJeff Dike <jdike@linux.intel.com>
      Cc: Haavard Skinnemoen <hskinnemoen@atmel.com>
      Cc: Paul Mundt <lethal@linux-sh.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Hirokazu Takata <takata@linux-m32r.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      5ab24c79
  5. 18 10月, 2007 1 次提交
  6. 11 10月, 2007 1 次提交