USB: fix ohci.h over-use warnings
authorJeff Garzik <jeff@garzik.org>
Mon, 4 Dec 2006 01:53:58 +0000 (20:53 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 20 Dec 2006 18:14:25 +0000 (10:14 -0800)
commitabc9404bb0bcfa8677ab5978b2c8b60ab5ef7536
tree298fc966a9a5ccaab8d2a8bbee04d04a9ffc1aec
parentc2585d962572744271a7e254d48c747727441936
USB: fix ohci.h over-use warnings

When u132-hcd is built, it includes local header ohci.h, which appears
to have been intended only for use by ohci-hcd.

This throws warnings about functions which are defined and not used.
The warnings thrown are because three small functions are implemented in
the header, but not declared 'inline', a rather strange affair.

Since these functions are small, let's go ahead and define them as
'inline', just like the inline functions surrounding them.  This makes
things more consistent, and kills the warnings.

Signed-off-by: Jeff Garzik <jeff@garzik.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/host/ohci.h