diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2010-10-20 07:15:35 -0400 | 
|---|---|---|
| committer | Remy Bohmer <linux@bohmer.net> | 2010-10-22 21:41:46 +0200 | 
| commit | 0228348e9c0361dcb1c7e2678a3d899aca15f258 (patch) | |
| tree | d0b2b0ab27062f07cc0f9fb8b324b4ae73d965a1 /drivers/usb/musb/musb_core.c | |
| parent | 8b675fe18e03d31f1c2a2ad576eab7e57c404751 (diff) | |
usb: musb: constify a bit
These ep and root hub structures need not be writable.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'drivers/usb/musb/musb_core.c')
| -rw-r--r-- | drivers/usb/musb/musb_core.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 6fe2c39bce8..545ebf4b502 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c @@ -76,7 +76,7 @@ void musb_start(void)   * epinfo	- Pointer to EP configuration table   * cnt		- Number of entries in the EP conf table.   */ -void musb_configure_ep(struct musb_epinfo *epinfo, u8 cnt) +void musb_configure_ep(const struct musb_epinfo *epinfo, u8 cnt)  {  	u16 csr;  	u16 fifoaddr = 64; /* First 64 bytes of FIFO reserved for EP0 */ | 
