summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/devices/nm-device.c6
-rw-r--r--src/devices/nm-device.h21
2 files changed, 0 insertions, 27 deletions
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index a7357c5486..9b65afee74 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -1732,12 +1732,6 @@ nm_device_realize (NMDevice *self,
return FALSE;
}
- /* Try to realize the device from existing resources */
- if (NM_DEVICE_GET_CLASS (self)->realize) {
- if (!NM_DEVICE_GET_CLASS (self)->realize (self, plink, error))
- return FALSE;
- }
-
realize_start_setup (self, plink);
return TRUE;
diff --git a/src/devices/nm-device.h b/src/devices/nm-device.h
index edcbb443a1..6b004a48ca 100644
--- a/src/devices/nm-device.h
+++ b/src/devices/nm-device.h
@@ -145,27 +145,6 @@ typedef struct {
void (* link_changed) (NMDevice *self, NMPlatformLink *info);
/**
- * realize():
- * @self: the #NMDevice
- * @plink: the #NMPlatformLink if backed by a kernel netdevice
- * @error: location to store error, or %NULL
- *
- * Realize the device from existing backing resources. No resources
- * should be created as a side-effect of this function. This function
- * should only fail if critical device properties/resources (eg, VLAN ID)
- * fail to be read or initialized, that would cause the device to be
- * unusable. For example, for any properties required to realize the device
- * during create_and_realize(), if reading those properties in realize()
- * should fail, this function should probably return %FALSE and an error.
- *
- * Returns: %TRUE on success, %FALSE if some error ocurred when realizing
- * the device from backing resources
- */
- gboolean (*realize) (NMDevice *self,
- NMPlatformLink *plink,
- GError **error);
-
- /**
* create_and_realize():
* @self: the #NMDevice
* @connection: the #NMConnection being activated