> Subject: [PATCH 1/1] usb: gadget: fsl_udc_core: Use
> module_platform_driver_probe macro
> 
> module_platform_driver_probe() eliminates the boilerplate and simplifies
> the code.
> 
> Signed-off-by: Sachin Kamat <[email protected]>
> Cc: Li Yang <[email protected]>

Acked-by: Li Yang <[email protected]>

> ---
>  drivers/usb/gadget/fsl_udc_core.c |   16 +---------------
>  1 files changed, 1 insertions(+), 15 deletions(-)
> 
> diff --git a/drivers/usb/gadget/fsl_udc_core.c
> b/drivers/usb/gadget/fsl_udc_core.c
> index 04d5fef..f523897 100644
> --- a/drivers/usb/gadget/fsl_udc_core.c
> +++ b/drivers/usb/gadget/fsl_udc_core.c
> @@ -2747,21 +2747,7 @@ static struct platform_driver udc_driver = {
>       },
>  };
> 
> -static int __init udc_init(void)
> -{
> -     printk(KERN_INFO "%s (%s)\n", driver_desc, DRIVER_VERSION);
> -     return platform_driver_probe(&udc_driver, fsl_udc_probe);
> -}
> -
> -module_init(udc_init);
> -
> -static void __exit udc_exit(void)
> -{
> -     platform_driver_unregister(&udc_driver);
> -     printk(KERN_WARNING "%s unregistered\n", driver_desc);
> -}
> -
> -module_exit(udc_exit);
> +module_platform_driver_probe(udc_driver, fsl_udc_probe);
> 
>  MODULE_DESCRIPTION(DRIVER_DESC);
>  MODULE_AUTHOR(DRIVER_AUTHOR);
> --
> 1.7.4.1
> 


--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to