Re: [PATCH 119/493] usb: remove use of __devexit_p

2012-11-20 Thread Peter Korsgaard
> "Nicolas" == Nicolas Ferre  writes:

 Nicolas> On 11/19/2012 07:21 PM, Bill Pemberton :
 >> 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  
 >> Cc: Felipe Balbi  
 >> Cc: Li Yang  
 >> Cc: Alan Stern  
 >> Cc: Wan ZongShun  
 >> Cc: Ben Dooks  
 >> Cc: Kukjin Kim  
 >> Cc: linux-...@vger.kernel.org 
 >> Cc: linux-o...@vger.kernel.org 
 >> Cc: linuxppc-...@lists.ozlabs.org 
 >> Cc: linux-arm-ker...@lists.infradead.org 
 >> Cc: linux-samsung-soc@vger.kernel.org 

 Nicolas> [..]

 >> drivers/usb/host/ehci-atmel.c| 2 +-

 >> drivers/usb/host/ohci-at91.c | 2 +-

 Nicolas> For Atmel:

 Nicolas> Acked-by: Nicolas Ferre 

For c67x00 and g_hid:

Acked-by: Peter Korsgaard 

-- 
Bye, Peter Korsgaard
--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 119/493] usb: remove use of __devexit_p

2012-11-20 Thread Nicolas Ferre
On 11/19/2012 07:21 PM, Bill Pemberton :
> 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  
> Cc: Felipe Balbi  
> Cc: Li Yang  
> Cc: Alan Stern  
> Cc: Wan ZongShun  
> Cc: Ben Dooks  
> Cc: Kukjin Kim  
> Cc: linux-...@vger.kernel.org 
> Cc: linux-o...@vger.kernel.org 
> Cc: linuxppc-...@lists.ozlabs.org 
> Cc: linux-arm-ker...@lists.infradead.org 
> Cc: linux-samsung-soc@vger.kernel.org 

[..]

>  drivers/usb/host/ehci-atmel.c| 2 +-

>  drivers/usb/host/ohci-at91.c | 2 +-

For Atmel:

Acked-by: Nicolas Ferre 

[..]

> diff --git a/drivers/usb/c67x00/c67x00-drv.c b/drivers/usb/c67x00/c67x00-drv.c
> index 6f3b6e2..855d538 100644
> --- a/drivers/usb/c67x00/c67x00-drv.c
> +++ b/drivers/usb/c67x00/c67x00-drv.c
> @@ -219,7 +219,7 @@ static int __devexit c67x00_drv_remove(struct 
> platform_device *pdev)
>  
>  static struct platform_driver c67x00_driver = {
>   .probe  = c67x00_drv_probe,
> - .remove = __devexit_p(c67x00_drv_remove),
> + .remove = c67x00_drv_remove,
>   .driver = {
>   .owner = THIS_MODULE,
>   .name = "c67x00",
> diff --git a/drivers/usb/chipidea/ci13xxx_imx.c 
> b/drivers/usb/chipidea/ci13xxx_imx.c
> index 0f5ca4b..5659730 100644
> --- a/drivers/usb/chipidea/ci13xxx_imx.c
> +++ b/drivers/usb/chipidea/ci13xxx_imx.c
> @@ -252,7 +252,7 @@ MODULE_DEVICE_TABLE(of, ci13xxx_imx_dt_ids);
>  
>  static struct platform_driver ci13xxx_imx_driver = {
>   .probe = ci13xxx_imx_probe,
> - .remove = __devexit_p(ci13xxx_imx_remove),
> + .remove = ci13xxx_imx_remove,
>   .driver = {
>   .name = "imx_usb",
>   .owner = THIS_MODULE,
> diff --git a/drivers/usb/chipidea/ci13xxx_msm.c 
> b/drivers/usb/chipidea/ci13xxx_msm.c
> index b01feb3..406c5af 100644
> --- a/drivers/usb/chipidea/ci13xxx_msm.c
> +++ b/drivers/usb/chipidea/ci13xxx_msm.c
> @@ -89,7 +89,7 @@ static int __devexit ci13xxx_msm_remove(struct 
> platform_device *pdev)
>  
>  static struct platform_driver ci13xxx_msm_driver = {
>   .probe = ci13xxx_msm_probe,
> - .remove = __devexit_p(ci13xxx_msm_remove),
> + .remove = ci13xxx_msm_remove,
>   .driver = { .name = "msm_hsusb", },
>  };
>  
> diff --git a/drivers/usb/chipidea/ci13xxx_pci.c 
> b/drivers/usb/chipidea/ci13xxx_pci.c
> index 918e149..e1cb2fb 100644
> --- a/drivers/usb/chipidea/ci13xxx_pci.c
> +++ b/drivers/usb/chipidea/ci13xxx_pci.c
> @@ -147,7 +147,7 @@ static struct pci_driver ci13xxx_pci_driver = {
>   .name = UDC_DRIVER_NAME,
>   .id_table = ci13xxx_pci_id_table,
>   .probe= ci13xxx_pci_probe,
> - .remove   = __devexit_p(ci13xxx_pci_remove),
> + .remove   = ci13xxx_pci_remove,
>  };
>  
>  module_pci_driver(ci13xxx_pci_driver);
> diff --git a/drivers/usb/chipidea/core.c b/drivers/usb/chipidea/core.c
> index f69d029..46f23f2 100644
> --- a/drivers/usb/chipidea/core.c
> +++ b/drivers/usb/chipidea/core.c
> @@ -523,7 +523,7 @@ static int __devexit ci_hdrc_remove(struct 
> platform_device *pdev)
>  
>  static struct platform_driver ci_hdrc_driver = {
>   .probe  = ci_hdrc_probe,
> - .remove = __devexit_p(ci_hdrc_remove),
> + .remove = ci_hdrc_remove,
>   .driver = {
>   .name   = "ci_hdrc",
>   },
> diff --git a/drivers/usb/chipidea/usbmisc_imx6q.c 
> b/drivers/usb/chipidea/usbmisc_imx6q.c
> index 416e3fc..81238a4 100644
> --- a/drivers/usb/chipidea/usbmisc_imx6q.c
> +++ b/drivers/usb/chipidea/usbmisc_imx6q.c
> @@ -136,7 +136,7 @@ static int __devexit usbmisc_imx6q_remove(struct 
> platform_device *pdev)
>  
>  static struct platform_driver usbmisc_imx6q_driver = {
>   .probe = usbmisc_imx6q_probe,
> - .remove = __devexit_p(usbmisc_imx6q_remove),
> + .remove = usbmisc_imx6q_remove,
>   .driver = {
>   .name = "usbmisc_imx6q",
>   .owner = THIS_MODULE,
> diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c
> index e71a62a..1a02442 100644
> --- a/drivers/usb/dwc3/core.c
> +++ b/drivers/usb/dwc3/core.c
> @@ -583,7 +583,7 @@ static int __devexit dwc3_remove(struct platform_device 
> *pdev)
>  
>  static struct platform_driver dwc3_driver = {
>   .probe  = dwc3_probe,
> - .remove = __devexit_p(dwc3_remove),
> + .remove = dwc3_remove,
>   .driver = {
>   .name   = "dwc3",
>   },
> diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c
> index dc35c54..19a9818 100644
> --- a/drivers/usb/dwc3/dwc3-exynos.c
> +++ b/drivers/usb/dwc3/dwc3-exynos.c
> @@ -196,7 +196,7 @@ MODULE_DEVICE_TABLE(of, exynos_dwc3_match);
>  
>  static struct platform_driver dwc3_exynos_driver = {
>   .probe  = dwc3_exynos_probe,
> - .remove = __devexit_p(dwc3_exynos_remove),
> + .remove = dwc3_exynos_remove,
>   .driver = {
>   .nam

Re: [PATCH 119/493] usb: remove use of __devexit_p

2012-11-19 Thread Felipe Balbi
Hi,

On Mon, Nov 19, 2012 at 01:21:08PM -0500, Bill Pemberton wrote:
> 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  
> Cc: Felipe Balbi  
> Cc: Li Yang  
> Cc: Alan Stern  
> Cc: Wan ZongShun  
> Cc: Ben Dooks  
> Cc: Kukjin Kim  
> Cc: linux-...@vger.kernel.org 
> Cc: linux-o...@vger.kernel.org 
> Cc: linuxppc-...@lists.ozlabs.org 
> Cc: linux-arm-ker...@lists.infradead.org 
> Cc: linux-samsung-soc@vger.kernel.org 
> ---
>  drivers/usb/c67x00/c67x00-drv.c  | 2 +-
>  drivers/usb/chipidea/ci13xxx_imx.c   | 2 +-
>  drivers/usb/chipidea/ci13xxx_msm.c   | 2 +-
>  drivers/usb/chipidea/ci13xxx_pci.c   | 2 +-
>  drivers/usb/chipidea/core.c  | 2 +-
>  drivers/usb/chipidea/usbmisc_imx6q.c | 2 +-
>  drivers/usb/dwc3/core.c  | 2 +-
>  drivers/usb/dwc3/dwc3-exynos.c   | 2 +-
>  drivers/usb/dwc3/dwc3-omap.c | 2 +-
>  drivers/usb/dwc3/dwc3-pci.c  | 2 +-
>  drivers/usb/gadget/bcm63xx_udc.c | 2 +-
>  drivers/usb/gadget/fsl_qe_udc.c  | 2 +-
>  drivers/usb/gadget/hid.c | 2 +-
>  drivers/usb/gadget/lpc32xx_udc.c | 2 +-
>  drivers/usb/gadget/net2272.c | 4 ++--
>  drivers/usb/gadget/omap_udc.c| 2 +-
>  drivers/usb/gadget/s3c-hsotg.c   | 2 +-
>  drivers/usb/host/bcma-hcd.c  | 2 +-
>  drivers/usb/host/ehci-atmel.c| 2 +-
>  drivers/usb/host/ehci-msm.c  | 2 +-
>  drivers/usb/host/ehci-platform.c | 2 +-
>  drivers/usb/host/ehci-s5p.c  | 2 +-
>  drivers/usb/host/ehci-w90x900.c  | 2 +-
>  drivers/usb/host/fhci-hcd.c  | 2 +-
>  drivers/usb/host/fsl-mph-dr-of.c | 2 +-
>  drivers/usb/host/isp1362-hcd.c   | 2 +-
>  drivers/usb/host/isp1760-if.c| 2 +-
>  drivers/usb/host/ohci-at91.c | 2 +-
>  drivers/usb/host/ohci-exynos.c   | 2 +-
>  drivers/usb/host/ohci-jz4740.c   | 2 +-
>  drivers/usb/host/ohci-omap3.c| 2 +-
>  drivers/usb/host/ohci-platform.c | 2 +-
>  drivers/usb/host/ohci-s3c2410.c  | 2 +-
>  drivers/usb/host/ohci-tmio.c | 2 +-
>  drivers/usb/host/r8a66597-hcd.c  | 2 +-
>  drivers/usb/host/sl811-hcd.c | 2 +-
>  drivers/usb/host/ssb-hcd.c   | 2 +-
>  drivers/usb/host/u132-hcd.c  | 2 +-
>  drivers/usb/musb/am35x.c | 2 +-
>  drivers/usb/musb/da8xx.c | 2 +-
>  drivers/usb/musb/davinci.c   | 2 +-
>  drivers/usb/musb/musb_core.c | 2 +-
>  drivers/usb/musb/musb_dsps.c | 2 +-
>  drivers/usb/musb/omap2430.c  | 2 +-
>  drivers/usb/musb/tusb6010.c  | 2 +-
>  drivers/usb/musb/ux500.c | 2 +-
>  drivers/usb/otg/ab8500-usb.c | 2 +-
>  drivers/usb/otg/fsl_otg.c| 2 +-
>  drivers/usb/otg/msm_otg.c| 2 +-
>  drivers/usb/otg/mxs-phy.c| 2 +-
>  drivers/usb/otg/nop-usb-xceiv.c  | 2 +-
>  drivers/usb/phy/mv_u3d_phy.c | 2 +-
>  drivers/usb/phy/omap-usb2.c  | 2 +-
>  drivers/usb/phy/rcar-phy.c   | 2 +-
>  drivers/usb/renesas_usbhs/common.c   | 2 +-
>  55 files changed, 56 insertions(+), 56 deletions(-)

For drivers/usb/gadget, drivers/usb/dwc3/, drivers/usb/musb/,
drivers/usb/otg/, drivers/usb/phy, and drivers/usb/renesas_usbhs:

Acked-by: Felipe Balbi 

-- 
balbi


signature.asc
Description: Digital signature


[PATCH 119/493] usb: remove use of __devexit_p

2012-11-19 Thread Bill Pemberton
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  
Cc: Felipe Balbi  
Cc: Li Yang  
Cc: Alan Stern  
Cc: Wan ZongShun  
Cc: Ben Dooks  
Cc: Kukjin Kim  
Cc: linux-...@vger.kernel.org 
Cc: linux-o...@vger.kernel.org 
Cc: linuxppc-...@lists.ozlabs.org 
Cc: linux-arm-ker...@lists.infradead.org 
Cc: linux-samsung-soc@vger.kernel.org 
---
 drivers/usb/c67x00/c67x00-drv.c  | 2 +-
 drivers/usb/chipidea/ci13xxx_imx.c   | 2 +-
 drivers/usb/chipidea/ci13xxx_msm.c   | 2 +-
 drivers/usb/chipidea/ci13xxx_pci.c   | 2 +-
 drivers/usb/chipidea/core.c  | 2 +-
 drivers/usb/chipidea/usbmisc_imx6q.c | 2 +-
 drivers/usb/dwc3/core.c  | 2 +-
 drivers/usb/dwc3/dwc3-exynos.c   | 2 +-
 drivers/usb/dwc3/dwc3-omap.c | 2 +-
 drivers/usb/dwc3/dwc3-pci.c  | 2 +-
 drivers/usb/gadget/bcm63xx_udc.c | 2 +-
 drivers/usb/gadget/fsl_qe_udc.c  | 2 +-
 drivers/usb/gadget/hid.c | 2 +-
 drivers/usb/gadget/lpc32xx_udc.c | 2 +-
 drivers/usb/gadget/net2272.c | 4 ++--
 drivers/usb/gadget/omap_udc.c| 2 +-
 drivers/usb/gadget/s3c-hsotg.c   | 2 +-
 drivers/usb/host/bcma-hcd.c  | 2 +-
 drivers/usb/host/ehci-atmel.c| 2 +-
 drivers/usb/host/ehci-msm.c  | 2 +-
 drivers/usb/host/ehci-platform.c | 2 +-
 drivers/usb/host/ehci-s5p.c  | 2 +-
 drivers/usb/host/ehci-w90x900.c  | 2 +-
 drivers/usb/host/fhci-hcd.c  | 2 +-
 drivers/usb/host/fsl-mph-dr-of.c | 2 +-
 drivers/usb/host/isp1362-hcd.c   | 2 +-
 drivers/usb/host/isp1760-if.c| 2 +-
 drivers/usb/host/ohci-at91.c | 2 +-
 drivers/usb/host/ohci-exynos.c   | 2 +-
 drivers/usb/host/ohci-jz4740.c   | 2 +-
 drivers/usb/host/ohci-omap3.c| 2 +-
 drivers/usb/host/ohci-platform.c | 2 +-
 drivers/usb/host/ohci-s3c2410.c  | 2 +-
 drivers/usb/host/ohci-tmio.c | 2 +-
 drivers/usb/host/r8a66597-hcd.c  | 2 +-
 drivers/usb/host/sl811-hcd.c | 2 +-
 drivers/usb/host/ssb-hcd.c   | 2 +-
 drivers/usb/host/u132-hcd.c  | 2 +-
 drivers/usb/musb/am35x.c | 2 +-
 drivers/usb/musb/da8xx.c | 2 +-
 drivers/usb/musb/davinci.c   | 2 +-
 drivers/usb/musb/musb_core.c | 2 +-
 drivers/usb/musb/musb_dsps.c | 2 +-
 drivers/usb/musb/omap2430.c  | 2 +-
 drivers/usb/musb/tusb6010.c  | 2 +-
 drivers/usb/musb/ux500.c | 2 +-
 drivers/usb/otg/ab8500-usb.c | 2 +-
 drivers/usb/otg/fsl_otg.c| 2 +-
 drivers/usb/otg/msm_otg.c| 2 +-
 drivers/usb/otg/mxs-phy.c| 2 +-
 drivers/usb/otg/nop-usb-xceiv.c  | 2 +-
 drivers/usb/phy/mv_u3d_phy.c | 2 +-
 drivers/usb/phy/omap-usb2.c  | 2 +-
 drivers/usb/phy/rcar-phy.c   | 2 +-
 drivers/usb/renesas_usbhs/common.c   | 2 +-
 55 files changed, 56 insertions(+), 56 deletions(-)

diff --git a/drivers/usb/c67x00/c67x00-drv.c b/drivers/usb/c67x00/c67x00-drv.c
index 6f3b6e2..855d538 100644
--- a/drivers/usb/c67x00/c67x00-drv.c
+++ b/drivers/usb/c67x00/c67x00-drv.c
@@ -219,7 +219,7 @@ static int __devexit c67x00_drv_remove(struct 
platform_device *pdev)
 
 static struct platform_driver c67x00_driver = {
.probe  = c67x00_drv_probe,
-   .remove = __devexit_p(c67x00_drv_remove),
+   .remove = c67x00_drv_remove,
.driver = {
.owner = THIS_MODULE,
.name = "c67x00",
diff --git a/drivers/usb/chipidea/ci13xxx_imx.c 
b/drivers/usb/chipidea/ci13xxx_imx.c
index 0f5ca4b..5659730 100644
--- a/drivers/usb/chipidea/ci13xxx_imx.c
+++ b/drivers/usb/chipidea/ci13xxx_imx.c
@@ -252,7 +252,7 @@ MODULE_DEVICE_TABLE(of, ci13xxx_imx_dt_ids);
 
 static struct platform_driver ci13xxx_imx_driver = {
.probe = ci13xxx_imx_probe,
-   .remove = __devexit_p(ci13xxx_imx_remove),
+   .remove = ci13xxx_imx_remove,
.driver = {
.name = "imx_usb",
.owner = THIS_MODULE,
diff --git a/drivers/usb/chipidea/ci13xxx_msm.c 
b/drivers/usb/chipidea/ci13xxx_msm.c
index b01feb3..406c5af 100644
--- a/drivers/usb/chipidea/ci13xxx_msm.c
+++ b/drivers/usb/chipidea/ci13xxx_msm.c
@@ -89,7 +89,7 @@ static int __devexit ci13xxx_msm_remove(struct 
platform_device *pdev)
 
 static struct platform_driver ci13xxx_msm_driver = {
.probe = ci13xxx_msm_probe,
-   .remove = __devexit_p(ci13xxx_msm_remove),
+   .remove = ci13xxx_msm_remove,
.driver = { .name = "msm_hsusb", },
 };
 
diff --git a/drivers/usb/chipidea/ci13xxx_pci.c 
b/drivers/usb/chipidea/ci13xxx_pci.c
index 918e149..e1cb2fb 100644
--- a/drivers/usb/chipidea/ci13xxx_pci.c
+++ b/drivers/usb/chipidea/ci13xxx_pci.c
@@ -147,7 +147,7 @@ static struct pci_driver ci13xxx_pci_driver = {
.name = UDC_DRIVER_NAME,
.id_table = ci13xxx_pci_id_table,
.probe= ci13xxx_pci_probe,
-   .remove   = __devexit_