1. 18 3月, 2013 12 次提交
  2. 04 3月, 2013 1 次提交
  3. 25 1月, 2013 5 次提交
  4. 23 1月, 2013 1 次提交
  5. 18 1月, 2013 3 次提交
  6. 13 12月, 2012 2 次提交
  7. 22 11月, 2012 3 次提交
  8. 16 11月, 2012 3 次提交
  9. 15 11月, 2012 1 次提交
  10. 30 10月, 2012 1 次提交
    • R
      usb: otg: Fix build errors if USB_MUSB_OMAP2PLUS is selected as module · f6bc8c29
      Roger Quadros 提交于
      TWL4030_USB & TWL6030_USB must depend on USB_MUSB_OMAP2PLUS in Kconfig else
      we get build errors with
      
      CONFIG_USB_MUSB_HDRC=m
      CONFIG_USB_MUSB_OMAP2PLUS=m
      CONFIG_TWL4030_USB=y
      CONFIG_TWL6030_USB=y
      
      LD      init/built-in.o
      drivers/built-in.o: In function `twl4030_usb_irq':
      drivers/usb/otg/twl4030-usb.c:518: undefined reference to `omap_musb_mailbox'
      drivers/built-in.o: In function `twl4030_usb_phy_init':
      drivers/usb/otg/twl4030-usb.c:540: undefined reference to `omap_musb_mailbox'
      
      drivers/built-in.o: In function `twl6030_usb_irq':
      drivers/usb/otg/twl6030-usb.c:230: undefined reference to `omap_musb_mailbox'
      drivers/usb/otg/twl6030-usb.c:225: undefined reference to `omap_musb_mailbox'
      drivers/built-in.o: In function `twl6030_usbotg_irq':
      drivers/usb/otg/twl6030-usb.c:259: undefined reference to `omap_musb_mailbox'
      
      CC: Peter Meerwald <pmeerw@pmeerw.net>
      Signed-off-by: NRoger Quadros <rogerq@ti.com>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      f6bc8c29
  11. 16 10月, 2012 1 次提交
  12. 21 9月, 2012 1 次提交
    • T
      ARM: OMAP1: Make plat/mux.h omap1 only · 70c494c3
      Tony Lindgren 提交于
      We are moving omap2+ to use the device tree based pinctrl-single.c
      and will be removing the old mux framework. This will remove the
      omap1 specific parts from plat-omap.
      Acked-by: NFelipe Balbi <balbi@ti.com>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Cc: Alan Stern <stern@rowland.harvard.edu>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
      Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
      Cc: linux-usb@vger.kernel.org
      Cc: linux-pcmcia@lists.infradead.org
      Cc: spi-devel-general@lists.sourceforge.net
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      70c494c3
  13. 11 9月, 2012 2 次提交
  14. 07 9月, 2012 3 次提交
  15. 21 8月, 2012 1 次提交
    • T
      workqueue: deprecate flush[_delayed]_work_sync() · 43829731
      Tejun Heo 提交于
      flush[_delayed]_work_sync() are now spurious.  Mark them deprecated
      and convert all users to flush[_delayed]_work().
      
      If you're cc'd and wondering what's going on: Now all workqueues are
      non-reentrant and the regular flushes guarantee that the work item is
      not pending or running on any CPU on return, so there's no reason to
      use the sync flushes at all and they're going away.
      
      This patch doesn't make any functional difference.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Paul Mundt <lethal@linux-sh.org>
      Cc: Ian Campbell <ian.campbell@citrix.com>
      Cc: Jens Axboe <axboe@kernel.dk>
      Cc: Mattia Dongili <malattia@linux.it>
      Cc: Kent Yoder <key@linux.vnet.ibm.com>
      Cc: David Airlie <airlied@linux.ie>
      Cc: Jiri Kosina <jkosina@suse.cz>
      Cc: Karsten Keil <isdn@linux-pingi.de>
      Cc: Bryan Wu <bryan.wu@canonical.com>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Alasdair Kergon <agk@redhat.com>
      Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
      Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: linux-wireless@vger.kernel.org
      Cc: Anton Vorontsov <cbou@mail.ru>
      Cc: Sangbeom Kim <sbkim73@samsung.com>
      Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Eric Van Hensbergen <ericvh@gmail.com>
      Cc: Takashi Iwai <tiwai@suse.de>
      Cc: Steven Whitehouse <swhiteho@redhat.com>
      Cc: Petr Vandrovec <petr@vandrovec.name>
      Cc: Mark Fasheh <mfasheh@suse.com>
      Cc: Christoph Hellwig <hch@infradead.org>
      Cc: Avi Kivity <avi@redhat.com> 
      43829731