1. 09 Nov, 2009 1 commit
  2. 12 Nov, 2009 1 commit
    • Alex Chiang's avatar
      No need to export those device attributes. · 6a5248d6
      Alex Chiang authored
      In fact, without this patch, we can trip over a build error if cciss
      is a built-in and another driver also declares and exports attributes
      with the same name.
      
      You'll see errors like:
      
      	drivers/scsi/built-in.o: multiple definition of `dev_attr_lunid'
      	drivers/block/built-in.o: first defined here
      
      Cc: Stephen M. Cameron <scameron@beardog.cce.hp.com>
      Signed-off-by: default avatarAlex Chiang <achiang@hp.com>
      Cc: <mike.miller@hp.com>
      Cc: Jens Axboe <jens.axboe@oracle.com>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      6a5248d6
  3. 06 Oct, 2009 1 commit
  4. 03 Nov, 2009 2 commits
  5. 12 Nov, 2009 14 commits
  6. 13 Oct, 2009 1 commit
  7. 09 Oct, 2009 1 commit
  8. 10 Oct, 2009 1 commit
  9. 09 Nov, 2009 1 commit
  10. 03 Nov, 2009 1 commit
  11. 14 Oct, 2009 1 commit
  12. 29 Sep, 2009 1 commit
  13. 19 Sep, 2009 1 commit
  14. 09 Nov, 2009 1 commit
  15. 25 Sep, 2009 1 commit
  16. 20 Aug, 2009 1 commit
  17. 04 Aug, 2009 2 commits
  18. 29 Jul, 2009 1 commit
  19. 25 Sep, 2009 1 commit
  20. 29 Jul, 2009 1 commit
  21. 25 Sep, 2009 1 commit
  22. 09 Nov, 2009 1 commit
  23. 11 Aug, 2009 1 commit
  24. 06 Oct, 2009 1 commit
    • Andrew Morton's avatar
      do_div() takes a u64. The mips build warns: · 4c338c20
      Andrew Morton authored
      In file included from include/trace/ftrace.h:635,
                       from include/trace/define_trace.h:61,
                       from include/trace/events/lockdep.h:96,
                       from kernel/lockdep.c:52:
      include/trace/events/lockdep.h: In function `ftrace_raw_event_lock_acquired':
      include/trace/events/lockdep.h:71: warning: comparison of distinct pointer types lacks a cast
      
      from the check in include/asm-generic/div64.h:do_div().
      
      Cc: Steven Rostedt <rostedt@goodmis.org>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      4c338c20
  25. 16 Oct, 2009 1 commit
    • Stephen Boyd's avatar
      dmar_ir_support() references dmar_tbl which is annotated with · 752ffa18
      Stephen Boyd authored
      __initdata. The only caller of dmar_ir_support() is
      intr_remapping_supported() also annotated with __init.
      
      WARNING: drivers/pci/built-in.o(.text+0xa110): Section mismatch in
      reference from the function dmar_ir_support() to the variable
      .init.data:dmar_tbl
      The function dmar_ir_support() references
      the variable __initdata dmar_tbl.
      This is often because dmar_ir_support lacks a __initdata
      annotation or the annotation of dmar_tbl is wrong.
      Signed-off-by: default avatarStephen Boyd <bebarino@gmail.com>
      Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
      Cc: David Woodhouse <David.Woodhouse@intel.com>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      752ffa18