diff --git a/src/util-device.c b/src/util-device.c index a7ef344e8f..5eed6abdb5 100644 --- a/src/util-device.c +++ b/src/util-device.c @@ -191,49 +191,6 @@ const char *LiveGetDeviceName(int number) return NULL; } -/** - * \brief Get the number of pre registered devices - * - * \retval cnt the number of pre registered devices - */ -int LiveGetDeviceNameCount(void) -{ - int i = 0; - LiveDeviceName *pd; - - TAILQ_FOREACH(pd, &pre_live_devices, next) { - i++; - } - - return i; -} - -/** - * \brief Get a pointer to the pre device name at idx - * - * \param number idx of the pre device in our list - * - * \retval ptr pointer to the string containing the device - * \retval NULL on error - */ -const char *LiveGetDeviceNameName(int number) -{ - int i = 0; - LiveDeviceName *pd; - - TAILQ_FOREACH(pd, &pre_live_devices, next) { - if (i == number) { - return pd->dev; - } - - i++; - } - - return NULL; -} - - - /** \internal * \brief Shorten a device name that is to long * diff --git a/src/util-device.h b/src/util-device.h index ec6fc65bcd..1837915145 100644 --- a/src/util-device.h +++ b/src/util-device.h @@ -61,8 +61,6 @@ typedef struct LiveDeviceName_ { void LiveDevRegisterExtension(void); int LiveRegisterDeviceName(const char *dev); -int LiveGetDeviceNameCount(void); -const char *LiveGetDeviceNameName(int number); int LiveRegisterDevice(const char *dev); int LiveDevUseBypass(LiveDevice *dev); void LiveDevSetBypassStats(LiveDevice *dev, uint64_t cnt, int family);