09 Jun, 2015
2 commits
-
Instead of manually handling the frees use devm. There was also a free
missing in the unregister call which is not needed with devm.Signed-off-by: Hauke Mehrtens
Signed-off-by: Greg Kroah-Hartman -
This patch makes bcma_hcd_create_pdev() not return NULL, but a prober
error code in case of an error.Signed-off-by: Hauke Mehrtens
Signed-off-by: Greg Kroah-Hartman
12 Feb, 2015
1 commit
-
Use the normal {} instead of a macro to terminate an array.
Remove the macro too.
Signed-off-by: Joe Perches
Signed-off-by: David S. Miller
31 Oct, 2013
1 commit
-
Replace the following sequence:
dma_set_mask(dev, mask);
dma_set_coherent_mask(dev, mask);with a call to the new helper dma_set_mask_and_coherent().
Signed-off-by: Russell King
22 Nov, 2012
4 commits
-
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.Signed-off-by: Bill Pemberton
Cc: Peter Korsgaard
Cc: Alexander Shishkin
Acked-by: Felipe Balbi
Cc: Li Yang
Cc: Alan Stern
Cc: Wan ZongShun
Cc: Ben Dooks
Cc: Kukjin Kim
Signed-off-by: Greg Kroah-Hartman -
CONFIG_HOTPLUG is going away as an option so __devinitconst is no
longer needed.Signed-off-by: Bill Pemberton
Cc: Li Yang
Acked-by: Felipe Balbi
Signed-off-by: Greg Kroah-Hartman -
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.Signed-off-by: Bill Pemberton
Cc: Peter Korsgaard
Cc: Alexander Shishkin
Acked-by: Felipe Balbi
Cc: Li Yang
Acked-by: Alan Stern
Cc: Geoff Levand
Cc: Wan ZongShun
Cc: Olav Kongas
Cc: Lennert Buytenhek
Cc: Ben Dooks
Cc: Kukjin Kim
Acked-by: Nicolas Ferre
Signed-off-by: Greg Kroah-Hartman -
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.Signed-off-by: Bill Pemberton
Cc: Peter Korsgaard
Cc: Alexander Shishkin
Acked-by: Felipe Balbi
Cc: Li Yang
Cc: Alan Stern
Cc: Wan ZongShun
Cc: Ben Dooks
Cc: Kukjin Kim
Acked-by: Nicolas Ferre
Acked-by: Peter Korsgaard
Signed-off-by: Greg Kroah-Hartman
24 Apr, 2012
1 commit
-
m68k/allmodconfig:
drivers/usb/host/ssb-hcd.c: In function ‘ssb_hcd_probe’:
drivers/usb/host/ssb-hcd.c:170: error: implicit declaration of function ‘kzalloc’
drivers/usb/host/ssb-hcd.c:170: warning: assignment makes pointer from integer without a cast
drivers/usb/host/ssb-hcd.c:205: error: implicit declaration of function ‘kfree’Signed-off-by: Geert Uytterhoeven
Signed-off-by: Greg Kroah-Hartman
19 Apr, 2012
1 commit
-
This adds a USB driver using the generic platform device driver for the
USB controller found on the Broadcom ssb bus. The ssb bus just
exposes one device which serves the OHCI and the EHCI controller at the
same time. This driver probes for this USB controller and creates and
registers two new platform devices which will be probed by the new
generic platform device driver. This makes it possible to use the EHCI
and the OCHI controller on the ssb bus at the same time.The old ssb OHCI USB driver will be removed in the next step as this
driver also provide an OHCI driver and an EHCI for the cores supporting
it.Signed-off-by: Hauke Mehrtens
Signed-off-by: Greg Kroah-Hartman