1. 13 Feb, 2013 12 commits
  2. 11 Feb, 2013 7 commits
  3. 08 Feb, 2013 5 commits
  4. 07 Feb, 2013 3 commits
  5. 06 Feb, 2013 7 commits
  6. 30 Jan, 2013 2 commits
  7. 25 Jan, 2013 4 commits
    • Greg Kroah-Hartman's avatar
      Merge 3.8-rc5 into char-misc-next · 74790147
      Greg Kroah-Hartman authored
      This pulls in all of the 3.8-rc5 fixes into this branch so we can test easier.
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      74790147
    • David Rientjes's avatar
      drivers, vmci: Fix build error · f6dcf8e7
      David Rientjes authored
      We can't rely on vmalloc.h being included by other included files because
      under some configs it is possible for the build to fail:
      
      drivers/misc/vmw_vmci/vmci_queue_pair.c: In function 'qp_free_queue':
      drivers/misc/vmw_vmci/vmci_queue_pair.c:270: error: implicit declaration of function 'vunmap'
      drivers/misc/vmw_vmci/vmci_queue_pair.c:277: error: implicit declaration of function 'vfree'
      drivers/misc/vmw_vmci/vmci_queue_pair.c: In function 'qp_alloc_queue':
      drivers/misc/vmw_vmci/vmci_queue_pair.c:302: error: implicit declaration of function 'vmalloc'
      drivers/misc/vmw_vmci/vmci_queue_pair.c:302: warning: assignment makes pointer from integer without a cast
      drivers/misc/vmw_vmci/vmci_queue_pair.c:324: error: implicit declaration of function 'vmap'
      drivers/misc/vmw_vmci/vmci_queue_pair.c:324: error: 'VM_MAP' undeclared (first use in this function)
      drivers/misc/vmw_vmci/vmci_queue_pair.c:324: error: (Each undeclared identifier is reported only once
      drivers/misc/vmw_vmci/vmci_queue_pair.c:324: error: for each function it appears in.)
      drivers/misc/vmw_vmci/vmci_queue_pair.c: In function 'qp_host_map_queues':
      drivers/misc/vmw_vmci/vmci_queue_pair.c:843: error: 'VM_MAP' undeclared (first use in this function)
      
      Fix the build by directly including vmalloc.h.
      Signed-off-by: default avatarDavid Rientjes <rientjes@google.com>
      Cc: George Zhang <georgezhang@vmware.com>
      Cc: Andy King <acking@vmware.com>
      Cc: Dmitry Torokhov <dtor@vmware.com>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f6dcf8e7
    • Linus Torvalds's avatar
      Linux 3.8-rc5 · 949db153
      Linus Torvalds authored
      949db153
    • Chanwoo Choi's avatar
      extcon: max77693: Fix bug of build error related to INPUT subsystem · 1aa05905
      Chanwoo Choi authored
      This patch fix build error of following log:
      
      drivers/built-in.o: In function `max77693_muic_remove':
      extcon-max77693.c:(.text+0x664853): undefined reference to `input_unregister_device'
      drivers/built-in.o: In function `max77693_muic_probe':
      extcon-max77693.c:(.text+0x664971): undefined reference to `input_allocate_device'
      extcon-max77693.c:(.text+0x6649c1): undefined reference to `input_set_capability'
      extcon-max77693.c:(.text+0x6649d6): undefined reference to `input_set_capability'
      extcon-max77693.c:(.text+0x6649eb): undefined reference to `input_set_capability'
      extcon-max77693.c:(.text+0x664a00): undefined reference to `input_set_capability'
      extcon-max77693.c:(.text+0x664a15): undefined reference to `input_set_capability'
      extcon-max77693.c:(.text+0x664a20): undefined reference to `input_register_device'
      drivers/built-in.o: In function `max77693_muic_adc_handler':
      extcon-max77693.c:(.text+0x665318): undefined reference to `input_event'
      extcon-max77693.c:(.text+0x66532a): undefined reference to `input_event'
      make[1]: *** [vmlinux] Error 1
      Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
      Signed-off-by: default avatarMyungjoo Ham <myungjoo.ham@samsung.com>
      Reported-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      1aa05905