Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364796
b: refs/heads/master
c: 50757b2
h: refs/heads/master
v: v3
  • Loading branch information
Felipe Balbi committed Apr 2, 2013
1 parent 43bcfb4 commit 00c03a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c5dbc220b327dc1ff5e0b1d829c091347511ed83
refs/heads/master: 50757b24944ede7ab07165cdb57c995456b6e916
10 changes: 5 additions & 5 deletions trunk/drivers/usb/gadget/pxa27x_udc.c
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ static void inc_ep_stats_bytes(struct pxa_ep *ep, int count, int is_in)
*
* Find the physical pxa27x ep, and setup its UDCCR
*/
static __init void pxa_ep_setup(struct pxa_ep *ep)
static void pxa_ep_setup(struct pxa_ep *ep)
{
u32 new_udccr;

Expand All @@ -631,7 +631,7 @@ static __init void pxa_ep_setup(struct pxa_ep *ep)
*
* Setup all pxa physical endpoints, except ep0
*/
static __init void pxa_eps_setup(struct pxa_udc *dev)
static void pxa_eps_setup(struct pxa_udc *dev)
{
unsigned int i;

Expand Down Expand Up @@ -1716,7 +1716,7 @@ static void udc_disable(struct pxa_udc *udc)
* Initializes gadget endpoint list, endpoints locks. No action is taken
* on the hardware.
*/
static __init void udc_init_data(struct pxa_udc *dev)
static void udc_init_data(struct pxa_udc *dev)
{
int i;
struct pxa_ep *ep;
Expand Down Expand Up @@ -2490,7 +2490,7 @@ static int pxa_udc_probe(struct platform_device *pdev)
* pxa_udc_remove - removes the udc device driver
* @_dev: platform device
*/
static int __exit pxa_udc_remove(struct platform_device *_dev)
static int pxa_udc_remove(struct platform_device *_dev)
{
struct pxa_udc *udc = platform_get_drvdata(_dev);
int gpio = udc->mach->gpio_pullup;
Expand Down Expand Up @@ -2609,7 +2609,7 @@ static struct platform_driver udc_driver = {
.owner = THIS_MODULE,
},
.probe = pxa_udc_probe,
.remove = __exit_p(pxa_udc_remove),
.remove = pxa_udc_remove,
.shutdown = pxa_udc_shutdown,
#ifdef CONFIG_PM
.suspend = pxa_udc_suspend,
Expand Down

0 comments on commit 00c03a5

Please sign in to comment.