driver-core: make __device_attach() static

It is only used within dd.c and thus need not be global.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Dmitry Torokhov 2015-05-20 16:36:31 -07:00 committed by Greg Kroah-Hartman
parent dc7dfcd838
commit 802a87fd5b

View file

@ -517,7 +517,7 @@ static void __device_attach_async_helper(void *_dev, async_cookie_t cookie)
put_device(dev);
}
int __device_attach(struct device *dev, bool allow_async)
static int __device_attach(struct device *dev, bool allow_async)
{
int ret = 0;