about summary refs log tree commit diff
path: root/src/core/devices/nm-device-generic.c
diff options
context:
space:
mode:
authorJeremy Bicha <jeremy.bicha@canonical.com>2022-02-22 16:46:07 -0500
committerJeremy Bicha <jeremy.bicha@canonical.com>2022-02-22 16:46:07 -0500
commit297ac7f51b68aaa0e281336e6c6154bb2c913580 (patch)
treeff98cec3cc8eeb03b58cfeae184f2da4bfa6c93f /src/core/devices/nm-device-generic.c
parentc713c9f47084b639644c0b9a8bb04faa3ccd21e3 (diff)
parent7d8baf4ac0480a542f000c1201df85427a22332c (diff)
Update to upstream version '1.35.90
Diffstat (limited to 'src/core/devices/nm-device-generic.c')
-rw-r--r--src/core/devices/nm-device-generic.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/devices/nm-device-generic.c b/src/core/devices/nm-device-generic.c
index 08ea5ac5..9f85925b 100644
--- a/src/core/devices/nm-device-generic.c
+++ b/src/core/devices/nm-device-generic.c
@@ -58,7 +58,7 @@ get_type_description(NMDevice *device)
 static void
 realize_start_notify(NMDevice *device, const NMPlatformLink *plink)
 {
-    NMDeviceGeneric *       self = NM_DEVICE_GENERIC(device);
+    NMDeviceGeneric        *self = NM_DEVICE_GENERIC(device);
     NMDeviceGenericPrivate *priv = NM_DEVICE_GENERIC_GET_PRIVATE(self);
     int                     ifindex;
 
@@ -112,7 +112,7 @@ update_connection(NMDevice *device, NMConnection *connection)
 static void
 get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
 {
-    NMDeviceGeneric *       self = NM_DEVICE_GENERIC(object);
+    NMDeviceGeneric        *self = NM_DEVICE_GENERIC(object);
     NMDeviceGenericPrivate *priv = NM_DEVICE_GENERIC_GET_PRIVATE(self);
 
     switch (prop_id) {
@@ -128,7 +128,7 @@ get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
 static void
 set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
 {
-    NMDeviceGeneric *       self = NM_DEVICE_GENERIC(object);
+    NMDeviceGeneric        *self = NM_DEVICE_GENERIC(object);
     NMDeviceGenericPrivate *priv = NM_DEVICE_GENERIC_GET_PRIVATE(self);
 
     switch (prop_id) {
@@ -180,7 +180,7 @@ nm_device_generic_new(const NMPlatformLink *plink, gboolean nm_plugin_missing)
 static void
 dispose(GObject *object)
 {
-    NMDeviceGeneric *       self = NM_DEVICE_GENERIC(object);
+    NMDeviceGeneric        *self = NM_DEVICE_GENERIC(object);
     NMDeviceGenericPrivate *priv = NM_DEVICE_GENERIC_GET_PRIVATE(self);
 
     nm_clear_g_free(&priv->type_description);
@@ -202,9 +202,9 @@ static const NMDBusInterfaceInfoExtended interface_info_device_generic = {
 static void
 nm_device_generic_class_init(NMDeviceGenericClass *klass)
 {
-    GObjectClass *     object_class      = G_OBJECT_CLASS(klass);
+    GObjectClass      *object_class      = G_OBJECT_CLASS(klass);
     NMDBusObjectClass *dbus_object_class = NM_DBUS_OBJECT_CLASS(klass);
-    NMDeviceClass *    device_class      = NM_DEVICE_CLASS(klass);
+    NMDeviceClass     *device_class      = NM_DEVICE_CLASS(klass);
 
     object_class->constructor  = constructor;
     object_class->dispose      = dispose;