summaryrefslogtreecommitdiff
path: root/src/devices/nm-device-ethernet.c
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2018-07-10 07:45:35 +0200
committerThomas Haller <thaller@redhat.com>2018-07-24 09:39:09 +0200
commitc3ab0ed60f35ad0a081066eb7eb5da6d3bf71c18 (patch)
tree5f6d533e73f283e72de365bb29c5e1b0d3f80b5a /src/devices/nm-device-ethernet.c
parent39f47e2f7e8c0f9dd26aacb822500c6e40cc3b04 (diff)
downloadNetworkManager-c3ab0ed60f35ad0a081066eb7eb5da6d3bf71c18.tar.gz
device/trivial: rename parent-class variable in device class constructor
The majority of device implementations name their parent-class variable "device_class". That also makes more sense as it is more consistant. E.g. "parent" sounds like it's the direct parent, but that is not the crucial point here. The crucial point at this place, is that we access the NMDeviceClass typed pointer. Rename.
Diffstat (limited to 'src/devices/nm-device-ethernet.c')
-rw-r--r--src/devices/nm-device-ethernet.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/devices/nm-device-ethernet.c b/src/devices/nm-device-ethernet.c
index a9a9f968e6..54d3dec3af 100644
--- a/src/devices/nm-device-ethernet.c
+++ b/src/devices/nm-device-ethernet.c
@@ -1750,7 +1750,7 @@ nm_device_ethernet_class_init (NMDeviceEthernetClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
NMDBusObjectClass *dbus_object_class = NM_DBUS_OBJECT_CLASS (klass);
- NMDeviceClass *parent_class = NM_DEVICE_CLASS (klass);
+ NMDeviceClass *device_class = NM_DEVICE_CLASS (klass);
g_type_class_add_private (object_class, sizeof (NMDeviceEthernetPrivate));
@@ -1763,25 +1763,25 @@ nm_device_ethernet_class_init (NMDeviceEthernetClass *klass)
dbus_object_class->interface_infos = NM_DBUS_INTERFACE_INFOS (&interface_info_device_wired);
- parent_class->get_generic_capabilities = get_generic_capabilities;
- parent_class->check_connection_compatible = check_connection_compatible;
- parent_class->complete_connection = complete_connection;
- parent_class->new_default_connection = new_default_connection;
-
- parent_class->act_stage1_prepare = act_stage1_prepare;
- parent_class->act_stage2_config = act_stage2_config;
- parent_class->act_stage3_ip4_config_start = act_stage3_ip4_config_start;
- parent_class->get_configured_mtu = get_configured_mtu;
- parent_class->deactivate = deactivate;
- parent_class->get_s390_subchannels = get_s390_subchannels;
- parent_class->update_connection = update_connection;
- parent_class->carrier_changed_notify = carrier_changed_notify;
- parent_class->link_changed = link_changed;
- parent_class->is_available = is_available;
- parent_class->can_reapply_change = can_reapply_change;
- parent_class->reapply_connection = reapply_connection;
-
- parent_class->state_changed = device_state_changed;
+ device_class->get_generic_capabilities = get_generic_capabilities;
+ device_class->check_connection_compatible = check_connection_compatible;
+ device_class->complete_connection = complete_connection;
+ device_class->new_default_connection = new_default_connection;
+
+ device_class->act_stage1_prepare = act_stage1_prepare;
+ device_class->act_stage2_config = act_stage2_config;
+ device_class->act_stage3_ip4_config_start = act_stage3_ip4_config_start;
+ device_class->get_configured_mtu = get_configured_mtu;
+ device_class->deactivate = deactivate;
+ device_class->get_s390_subchannels = get_s390_subchannels;
+ device_class->update_connection = update_connection;
+ device_class->carrier_changed_notify = carrier_changed_notify;
+ device_class->link_changed = link_changed;
+ device_class->is_available = is_available;
+ device_class->can_reapply_change = can_reapply_change;
+ device_class->reapply_connection = reapply_connection;
+
+ device_class->state_changed = device_state_changed;
obj_properties[PROP_SPEED] =
g_param_spec_uint (NM_DEVICE_ETHERNET_SPEED, "", "",