Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | USB: irq: Remove IRQF_DISABLED | Yong Zhang | 2011-09-18 | 1 | -1/+1 |
| | | | | | | | This flag is a NOOP and can be removed now. Signed-off-by: Yong Zhang <yong.zhang0@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> | ||||
* | treewide: Convert uses of struct resource to resource_size(ptr) | Joe Perches | 2011-06-10 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | Several fixes as well where the +1 was missing. Done via coccinelle scripts like: @@ struct resource *ptr; @@ - ptr->end - ptr->start + 1 + resource_size(ptr) and some grep and typing. Mostly uncompiled, no cross-compilers. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz> | ||||
* | USB: ohci: add bus glue for the Atheros AR71XX/AR7240 SoCs | Gabor Juhos | 2011-04-13 | 1 | -0/+151 |
The Atheros AR71XX/AR7240 SoCs have a built-in OHCI controller. This patch adds the necessary glue code to make the generic OHCI driver usable for them. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Signed-off-by: Imre Kaloz <kaloz@openwrt.org> Cc: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> |