Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 113365
b: refs/heads/master
c: 467cd05
h: refs/heads/master
i:
  113363: 073ad07
v: v3
  • Loading branch information
Harvey Harrison authored and Ingo Molnar committed Aug 19, 2008
1 parent 360bfb9 commit 9fb32a6
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: 9749986a878e91182ff027ff0010ab8e3211031a
refs/heads/master: 467cd0529a480c9c25f06154b788d1d1ba77828a
10 changes: 5 additions & 5 deletions trunk/arch/x86/kernel/early_printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ static int dbgp_control_msg(unsigned devnum, int requesttype, int request,
/* Compute the control message */
req.bRequestType = requesttype;
req.bRequest = request;
req.wValue = value;
req.wIndex = index;
req.wLength = size;
req.wValue = cpu_to_le16(value);
req.wIndex = cpu_to_le16(index);
req.wLength = cpu_to_le16(size);

pids = DBGP_PID_SET(USB_PID_DATA0, USB_PID_SETUP);
addr = DBGP_EPADDR(devnum, 0);
Expand Down Expand Up @@ -842,7 +842,7 @@ static int __init early_dbgp_init(char *s)
ret = ehci_setup();
if (ret < 0) {
dbgp_printk("ehci_setup failed\n");
ehci_debug = 0;
ehci_debug = NULL;

return -1;
}
Expand Down Expand Up @@ -989,7 +989,7 @@ static int __init setup_early_printk(char *buf)
return 0;
}

void __init enable_debug_console(char *buf)
static void __init enable_debug_console(char *buf)
{
#ifdef DBGP_DEBUG
struct console *old_early_console = NULL;
Expand Down

0 comments on commit 9fb32a6

Please sign in to comment.