util-device: remove unused functions

pull/8430/head
Lukas Sismis 3 years ago committed by Victor Julien
parent bed16ba44c
commit 449943e1a9

@ -191,49 +191,6 @@ const char *LiveGetDeviceName(int number)
return NULL; 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 /** \internal
* \brief Shorten a device name that is to long * \brief Shorten a device name that is to long
* *

@ -61,8 +61,6 @@ typedef struct LiveDeviceName_ {
void LiveDevRegisterExtension(void); void LiveDevRegisterExtension(void);
int LiveRegisterDeviceName(const char *dev); int LiveRegisterDeviceName(const char *dev);
int LiveGetDeviceNameCount(void);
const char *LiveGetDeviceNameName(int number);
int LiveRegisterDevice(const char *dev); int LiveRegisterDevice(const char *dev);
int LiveDevUseBypass(LiveDevice *dev); int LiveDevUseBypass(LiveDevice *dev);
void LiveDevSetBypassStats(LiveDevice *dev, uint64_t cnt, int family); void LiveDevSetBypassStats(LiveDevice *dev, uint64_t cnt, int family);

Loading…
Cancel
Save