1. 31 1月, 2015 3 次提交
  2. 15 1月, 2015 1 次提交
  3. 13 1月, 2015 1 次提交
  4. 11 1月, 2015 5 次提交
  5. 11 12月, 2014 1 次提交
  6. 20 11月, 2014 4 次提交
  7. 10 11月, 2014 1 次提交
  8. 27 10月, 2014 1 次提交
  9. 21 10月, 2014 1 次提交
  10. 10 10月, 2014 1 次提交
  11. 03 10月, 2014 3 次提交
  12. 29 9月, 2014 11 次提交
    • G
      m68k: AMIGA_BUILTIN_SERIAL should depend on TTY · 2c8faf3d
      Geert Uytterhoeven 提交于
      If CONFIG_TTY=n:
      
      drivers/built-in.o: In function `rs_flush_buffer':
      amiserial.c:(.text+0x1f626): undefined reference to `tty_wakeup'
      drivers/built-in.o: In function `transmit_chars':
      amiserial.c:(.text+0x1f6c8): undefined reference to `tty_wakeup'
      drivers/built-in.o: In function `change_speed':
      amiserial.c:(.text+0x1f80a): undefined reference to `tty_termios_baud_rate'
      amiserial.c:(.text+0x1f88c): undefined reference to `tty_termios_baud_rate'
      drivers/built-in.o: In function `check_modem_status':
      amiserial.c:(.text+0x1faa6): undefined reference to `tty_hangup'
      amiserial.c:(.text+0x1faec): undefined reference to `tty_wakeup'
      drivers/built-in.o: In function `get_serial_info':
      amiserial.c:(.text+0x1fb88): undefined reference to `tty_lock'
      amiserial.c:(.text+0x1fbc0): undefined reference to `tty_unlock'
      drivers/built-in.o: In function `rs_open':
      amiserial.c:(.text+0x1fdc6): undefined reference to `tty_port_block_til_ready'
      drivers/built-in.o: In function `set_serial_info':
      amiserial.c:(.text+0x1fe0c): undefined reference to `tty_lock'
      amiserial.c:(.text+0x1fea0): undefined reference to `tty_unlock'
      amiserial.c:(.text+0x1fed0): undefined reference to `tty_unlock'
      amiserial.c:(.text+0x1ffaa): undefined reference to `tty_unlock'
      drivers/built-in.o: In function `receive_chars':
      amiserial.c:(.text+0x2005c): undefined reference to `do_SAK'
      amiserial.c:(.text+0x200e0): undefined reference to `tty_insert_flip_string_flags'
      amiserial.c:(.text+0x2013c): undefined reference to `tty_insert_flip_string_flags'
      amiserial.c:(.text+0x20148): undefined reference to `tty_flip_buffer_push'
      drivers/built-in.o: In function `rs_close':
      amiserial.c:(.text+0x20744): undefined reference to `tty_port_close_start'
      amiserial.c:(.text+0x2078a): undefined reference to `tty_ldisc_flush'
      amiserial.c:(.text+0x20798): undefined reference to `tty_port_close_end'
      drivers/built-in.o: In function `amiga_serial_probe':
      amiserial.c:(.init.text+0x96a): undefined reference to `__tty_alloc_driver'
      amiserial.c:(.init.text+0x9c0): undefined reference to `tty_std_termios'
      amiserial.c:(.init.text+0x9e6): undefined reference to `tty_set_operations'
      amiserial.c:(.init.text+0xa3e): undefined reference to `tty_port_init'
      amiserial.c:(.init.text+0xa5c): undefined reference to `tty_port_link_device'
      amiserial.c:(.init.text+0xa6c): undefined reference to `tty_register_driver'
      amiserial.c:(.init.text+0xb4a): undefined reference to `tty_unregister_driver'
      amiserial.c:(.init.text+0xb58): undefined reference to `tty_port_destroy'
      amiserial.c:(.init.text+0xb64): undefined reference to `put_tty_driver'
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      2c8faf3d
    • P
      m68k: Fix typo 'COFNIG_MBAR' · e803d4bd
      Paul Bolle 提交于
      Signed-off-by: NPaul Bolle <pebolle@tiscali.nl>
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      e803d4bd
    • G
      m68knommu: add missing ioport_map() and ioport_unmap() · f89487ad
      Greg Ungerer 提交于
      Add the missing ioport_map() and ioport_unmap() functions for the
      non-MMU platforms.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      f89487ad
    • F
      m68k/coldfire: remove second asm/mcfclk.h inclusion in m54xx.c · 1089c552
      Fabian Frederick 提交于
      asm/mcfclk.h was included twice.
      Signed-off-by: NFabian Frederick <fabf@skynet.be>
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      1089c552
    • G
      m68knommu: fix size of address field for 5272 interrupt controller · ecb6bdcd
      Greg Ungerer 提交于
      Picked up by the 0-day buidler:
      
      All warnings:
      >> arch/m68k/coldfire/intc-5272.c:46:20: warning: large integer implicitly truncated to unsigned type [-Woverflow]
           /*MCF_IRQ_EINT1*/ { .icr = MCFSIM_ICR1, .index = 28, .ack = 1, },
      ...
      
      The problem stems from the changes to make all ColdFire register addresses
      absolute, in commit d72a5abb ("make remaining ColdFire 5272 register
      definitions absolute"). That change did not take into account that the
      addresses were stored as offsets in the irqmap of the intc-5272.c code.
      Make the field that now stores register addresses big enough to hold
      addresses.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      ecb6bdcd
    • G
      m68k: fix crufty 68000 and 68360 intro comments · 6f4a8856
      Greg Ungerer 提交于
      Quite a few of the non-mmu specific support files have a pathname in the
      title comments of the file. These files have moved around a bit over the
      years, and most are no longer accurate. Remove the pathname and fix the
      comments to include at least a short description of the files contents.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      6f4a8856
    • G
      m68k: remove the unused arch/m68k/platform directory · d3a887cc
      Greg Ungerer 提交于
      The non-mmu platform/machine directories have been move up one level.
      We no longer need arch/m68k/platform, or its Makefile, so remove them.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      d3a887cc
    • G
      m68k: move non-mmu 68360 platform code · 3ba885f5
      Greg Ungerer 提交于
      The non-mmu 68360 specific code is inconsistently placed under a directory
      named "platform". Move it to arch/m68k/ along with the other platform and
      board directories.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      3ba885f5
    • G
      m68k: move non-mmu 68000 platform code · 18cb3faf
      Greg Ungerer 提交于
      The non-mmu 68000 specific code is inconsistently placed under a directory
      named "platform". Move it to arch/m68k/ along with the other platform and
      machine directories.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      18cb3faf
    • G
      m68k: fix crufty ColdFire intro comments · ece9ae65
      Greg Ungerer 提交于
      Quite a few of the ColdFire specific support files have a pathname in the
      title comments of the file. These files have moved around a bit over the
      years, and most are no longer accurate. Remove the pathname and fix the
      comments to include at least a short description of the files contents.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      ece9ae65
    • G
      m68k: move coldfire platform code · f86b9e03
      Greg Ungerer 提交于
      Move the m68k ColdFire platform support code directory to be with the
      existing m68k platforms. Although the ColdFire is not a platform as such,
      we have always kept all its support together. No reason to change that
      as this time.
      Signed-off-by: NGreg Ungerer <gerg@uclinux.org>
      Acked-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      f86b9e03
  13. 28 9月, 2014 2 次提交
    • G
      m68k: AMIGA_BUILTIN_SERIAL should depend on TTY · fd4d453b
      Geert Uytterhoeven 提交于
      If CONFIG_TTY=n:
      
      drivers/built-in.o: In function `rs_flush_buffer':
      amiserial.c:(.text+0x1f626): undefined reference to `tty_wakeup'
      drivers/built-in.o: In function `transmit_chars':
      amiserial.c:(.text+0x1f6c8): undefined reference to `tty_wakeup'
      drivers/built-in.o: In function `change_speed':
      amiserial.c:(.text+0x1f80a): undefined reference to `tty_termios_baud_rate'
      amiserial.c:(.text+0x1f88c): undefined reference to `tty_termios_baud_rate'
      drivers/built-in.o: In function `check_modem_status':
      amiserial.c:(.text+0x1faa6): undefined reference to `tty_hangup'
      amiserial.c:(.text+0x1faec): undefined reference to `tty_wakeup'
      drivers/built-in.o: In function `get_serial_info':
      amiserial.c:(.text+0x1fb88): undefined reference to `tty_lock'
      amiserial.c:(.text+0x1fbc0): undefined reference to `tty_unlock'
      drivers/built-in.o: In function `rs_open':
      amiserial.c:(.text+0x1fdc6): undefined reference to `tty_port_block_til_ready'
      drivers/built-in.o: In function `set_serial_info':
      amiserial.c:(.text+0x1fe0c): undefined reference to `tty_lock'
      amiserial.c:(.text+0x1fea0): undefined reference to `tty_unlock'
      amiserial.c:(.text+0x1fed0): undefined reference to `tty_unlock'
      amiserial.c:(.text+0x1ffaa): undefined reference to `tty_unlock'
      drivers/built-in.o: In function `receive_chars':
      amiserial.c:(.text+0x2005c): undefined reference to `do_SAK'
      amiserial.c:(.text+0x200e0): undefined reference to `tty_insert_flip_string_flags'
      amiserial.c:(.text+0x2013c): undefined reference to `tty_insert_flip_string_flags'
      amiserial.c:(.text+0x20148): undefined reference to `tty_flip_buffer_push'
      drivers/built-in.o: In function `rs_close':
      amiserial.c:(.text+0x20744): undefined reference to `tty_port_close_start'
      amiserial.c:(.text+0x2078a): undefined reference to `tty_ldisc_flush'
      amiserial.c:(.text+0x20798): undefined reference to `tty_port_close_end'
      drivers/built-in.o: In function `amiga_serial_probe':
      amiserial.c:(.init.text+0x96a): undefined reference to `__tty_alloc_driver'
      amiserial.c:(.init.text+0x9c0): undefined reference to `tty_std_termios'
      amiserial.c:(.init.text+0x9e6): undefined reference to `tty_set_operations'
      amiserial.c:(.init.text+0xa3e): undefined reference to `tty_port_init'
      amiserial.c:(.init.text+0xa5c): undefined reference to `tty_port_link_device'
      amiserial.c:(.init.text+0xa6c): undefined reference to `tty_register_driver'
      amiserial.c:(.init.text+0xb4a): undefined reference to `tty_unregister_driver'
      amiserial.c:(.init.text+0xb58): undefined reference to `tty_port_destroy'
      amiserial.c:(.init.text+0xb64): undefined reference to `put_tty_driver'
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      fd4d453b
    • G
      m68k: Add missing ioport_unmap() · a000dfc2
      Geert Uytterhoeven 提交于
      drivers/net/ethernet/cirrus/cs89x0.c: In function ‘cs89x0_ioport_probe’:
      drivers/net/ethernet/cirrus/cs89x0.c:1629: error: implicit declaration of function ‘ioport_unmap’
      
      Add the missing ioport_unmap() implementation, and convert ioport_map()
      from a macro to a static inline function while we're at it (both copied
      from asm-generic).
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      a000dfc2
  14. 14 9月, 2014 2 次提交
    • G
      m68k/atari - stram: Add missing #include <linux/ioport.h> · 9aa59cac
      Geert Uytterhoeven 提交于
      If CONFIG_BLOCK=n:
      
      arch/m68k/atari/stram.c:44: error: variable ‘stram_pool’ has initializer but incomplete type
      arch/m68k/atari/stram.c:45: error: unknown field ‘name’ specified in initializer
      arch/m68k/atari/stram.c:46: warning: excess elements in struct initializer
      arch/m68k/atari/stram.c:46: warning: (near initialization for ‘stram_pool’)
      arch/m68k/atari/stram.c: In function ‘atari_stram_reserve_pages’:
      arch/m68k/atari/stram.c:97: error: invalid use of undefined type ‘struct resource’
      ...
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      9aa59cac
    • P
      irq_work: Introduce arch_irq_work_has_interrupt() · c5c38ef3
      Peter Zijlstra 提交于
      The nohz full code needs irq work to trigger its own interrupt so that
      the subsystem can work even when the tick is stopped.
      
      Lets introduce arch_irq_work_has_interrupt() that archs can override to
      tell about their support for this ability.
      Signed-off-by: NPeter Zijlstra <peterz@infradead.org>
      Cc: Ingo Molnar <mingo@kernel.org>
      Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Signed-off-by: NFrederic Weisbecker <fweisbec@gmail.com>
      c5c38ef3
  15. 01 9月, 2014 3 次提交