Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9714d587 authored by Francesco Lavra's avatar Francesco Lavra Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (13957): IR: Fix sysfs attributes declaration



This patch fixes the declaration of the sysfs attributes for IR's, which
must be a NULL-terminated array of struct attribute *.
Without this patch, my machine crashes when inserting a DVB card.

Signed-off-by: default avatarFrancesco Lavra <francescolavra@interfree.it>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 21163565
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -125,6 +125,7 @@ static DEVICE_ATTR(current_protocol, S_IRUGO | S_IWUSR,

static struct attribute *ir_dev_attrs[] = {
	&dev_attr_current_protocol.attr,
	NULL,
};

/**