Fix previous commit. We obviously want the global stack variable to be set, we

just don't need the shared area.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27766 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2008-09-28 13:21:18 +00:00
parent 48ab20fa34
commit eb6a1cbc4c
1 changed files with 1 additions and 1 deletions

View File

@ -56,9 +56,9 @@ bus_std_ops(int32 op, ...)
return ENODEV;
}
gUSBStack = stack;
#ifndef __HAIKU__
// Plain R5 workaround, see comment above.
gUSBStack = stack;
shared = create_area("shared usb stack", &address,
B_ANY_KERNEL_ADDRESS, B_PAGE_SIZE, B_NO_LOCK,
B_KERNEL_WRITE_AREA);