summaryrefslogtreecommitdiff
path: root/src/devices/wwan/nm-device-modem.c
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2020-02-12 15:13:29 +0100
committerThomas Haller <thaller@redhat.com>2020-02-17 14:43:12 +0100
commitbe4129bb2db90b1a03d8dd45e7c5ea9c0f9e6f7b (patch)
tree4c401096c2bf1387416755c0e7c5c0952b462679 /src/devices/wwan/nm-device-modem.c
parente34db042af194fa6d5d3a4d4e9bffef509ddcbf0 (diff)
downloadNetworkManager-be4129bb2db90b1a03d8dd45e7c5ea9c0f9e6f7b.tar.gz
device/trivial: rename get_dhcp_timeout() virtual function to have a unique name
This is C, we have almost no IDE support. And ctags/cscope is much more helpful if we use unique names. Don't use the get_dhcp_timeout() name, because that is already used in "src/devices/nm-device.c" already. Rename.
Diffstat (limited to 'src/devices/wwan/nm-device-modem.c')
-rw-r--r--src/devices/wwan/nm-device-modem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/wwan/nm-device-modem.c b/src/devices/wwan/nm-device-modem.c
index 3e6ccc8f5d..3de5ae07dd 100644
--- a/src/devices/wwan/nm-device-modem.c
+++ b/src/devices/wwan/nm-device-modem.c
@@ -732,7 +732,7 @@ set_modem (NMDeviceModem *self, NMModem *modem)
}
static guint32
-get_dhcp_timeout (NMDevice *device, int addr_family)
+get_dhcp_timeout_for_device (NMDevice *device, int addr_family)
{
/* DHCP is always done by the modem firmware, not by the network, and
* by the time we get around to DHCP the firmware should already know
@@ -897,7 +897,7 @@ nm_device_modem_class_init (NMDeviceModemClass *klass)
device_class->is_available = is_available;
device_class->get_ip_iface_identifier = get_ip_iface_identifier;
device_class->get_configured_mtu = nm_modem_get_configured_mtu;
- device_class->get_dhcp_timeout = get_dhcp_timeout;
+ device_class->get_dhcp_timeout_for_device = get_dhcp_timeout_for_device;
device_class->state_changed = device_state_changed;