Commit 8502eb3b authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

greybus: make greybus_gpbdev_type static



'make check' correctly complains that this should be static, so make it
so.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
Reviewed-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 8888b963
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ static void gpbdev_release(struct device *dev)
	kfree(gpbdev);
}

struct device_type greybus_gpbdev_type = {
static struct device_type greybus_gpbdev_type = {
	.name	 =	"gpbridge_device",
	.release =	gpbdev_release,
};