spa: v4l2: remove ignored flag

Nothing sets it.
This commit is contained in:
Barnabás Pőcze 2024-01-06 20:31:32 +01:00
parent 64eaaf27ab
commit 66c7966b75

View file

@ -37,7 +37,6 @@ struct device {
struct udev_device *dev; struct udev_device *dev;
int inotify_wd; int inotify_wd;
unsigned int accessible:1; unsigned int accessible:1;
unsigned int ignored:1;
unsigned int emitted:1; unsigned int emitted:1;
}; };
@ -368,8 +367,6 @@ static void process_device(struct impl *this, uint32_t action, struct udev_devic
return; return;
device = find_device(this, id); device = find_device(this, id);
if (device && device->ignored)
return;
switch (action) { switch (action) {
case ACTION_ADD: case ACTION_ADD: