Tag: 900937c0375efcbb2c9fb2eef50ccb5c98fc99ea

usb: ehci: ohci: fix bool assignments

Author: Geyslan G. Bem <geyslan@gmail.com> When assigning bool use true instead of 1. If declaring it as static and it’s false there’s no need to initialize it, since static variables are zeroed by default. Caught by coccinelle. Signed-off-by: Geyslan G. Bem Signed-off-by: Greg Kroah-Hartman — drivers/usb/host/ehci-hcd.c | 2 +- drivers/usb/host/ohci-hcd.c | 4 ++– drivers/usb/host/u132-hcd.c | …

Continue reading