diff options
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/x86/kernel/early_printk.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/kernel/early_printk.c b/arch/x86/kernel/early_printk.c index 28155acf706e..825e9136b026 100644 --- a/arch/x86/kernel/early_printk.c +++ b/arch/x86/kernel/early_printk.c | |||
| @@ -401,9 +401,9 @@ static int dbgp_control_msg(unsigned devnum, int requesttype, int request, | |||
| 401 | /* Compute the control message */ | 401 | /* Compute the control message */ |
| 402 | req.bRequestType = requesttype; | 402 | req.bRequestType = requesttype; |
| 403 | req.bRequest = request; | 403 | req.bRequest = request; |
| 404 | req.wValue = value; | 404 | req.wValue = cpu_to_le16(value); |
| 405 | req.wIndex = index; | 405 | req.wIndex = cpu_to_le16(index); |
| 406 | req.wLength = size; | 406 | req.wLength = cpu_to_le16(size); |
| 407 | 407 | ||
| 408 | pids = DBGP_PID_SET(USB_PID_DATA0, USB_PID_SETUP); | 408 | pids = DBGP_PID_SET(USB_PID_DATA0, USB_PID_SETUP); |
| 409 | addr = DBGP_EPADDR(devnum, 0); | 409 | addr = DBGP_EPADDR(devnum, 0); |
| @@ -842,7 +842,7 @@ static int __init early_dbgp_init(char *s) | |||
| 842 | ret = ehci_setup(); | 842 | ret = ehci_setup(); |
| 843 | if (ret < 0) { | 843 | if (ret < 0) { |
| 844 | dbgp_printk("ehci_setup failed\n"); | 844 | dbgp_printk("ehci_setup failed\n"); |
| 845 | ehci_debug = 0; | 845 | ehci_debug = NULL; |
| 846 | 846 | ||
| 847 | return -1; | 847 | return -1; |
| 848 | } | 848 | } |
| @@ -989,7 +989,7 @@ static int __init setup_early_printk(char *buf) | |||
| 989 | return 0; | 989 | return 0; |
| 990 | } | 990 | } |
| 991 | 991 | ||
| 992 | void __init enable_debug_console(char *buf) | 992 | static void __init enable_debug_console(char *buf) |
| 993 | { | 993 | { |
| 994 | #ifdef DBGP_DEBUG | 994 | #ifdef DBGP_DEBUG |
| 995 | struct console *old_early_console = NULL; | 995 | struct console *old_early_console = NULL; |
