From: Marcel Holtmann Date: Sun, 4 Jan 2009 15:54:42 +0000 (+0100) Subject: Remove useless suffix of device driver names X-Git-Tag: accepted/2.0alpha-wayland/20121110.002834~4183 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c914879892265fa8cbcf85bd81c262f7c19dfb5;p=profile%2Fivi%2Fconnman.git Remove useless suffix of device driver names --- diff --git a/plugins/hso.c b/plugins/hso.c index bf7c2b3..9489cf1 100644 --- a/plugins/hso.c +++ b/plugins/hso.c @@ -211,7 +211,7 @@ static int hso_disable(struct connman_device *device) } static struct connman_device_driver hso_driver = { - .name = "hso-device", + .name = "hso", .type = CONNMAN_DEVICE_TYPE_HSO, .probe = hso_probe, .remove = hso_remove, diff --git a/plugins/huawei.c b/plugins/huawei.c index 2249048..c165aea 100644 --- a/plugins/huawei.c +++ b/plugins/huawei.c @@ -61,7 +61,7 @@ static int huawei_disable(struct connman_device *device) } static struct connman_device_driver huawei_driver = { - .name = "huawei-device", + .name = "huawei", .type = CONNMAN_DEVICE_TYPE_HUAWEI, .probe = huawei_probe, .remove = huawei_remove, diff --git a/plugins/novatel.c b/plugins/novatel.c index f43c5eb..b1d7bb4 100644 --- a/plugins/novatel.c +++ b/plugins/novatel.c @@ -61,7 +61,7 @@ static int novatel_disable(struct connman_device *device) } static struct connman_device_driver novatel_driver = { - .name = "novatel-device", + .name = "novatel", .type = CONNMAN_DEVICE_TYPE_NOVATEL, .probe = novatel_probe, .remove = novatel_remove, diff --git a/plugins/wifi.c b/plugins/wifi.c index 3c8fa80..f52d848 100644 --- a/plugins/wifi.c +++ b/plugins/wifi.c @@ -497,7 +497,7 @@ static int wifi_scan(struct connman_device *device) } static struct connman_device_driver wifi_driver = { - .name = "wifi-device", + .name = "wifi", .type = CONNMAN_DEVICE_TYPE_WIFI, .probe = wifi_probe, .remove = wifi_remove,