On Mon, Apr 08, 2019 at 01:04:00PM +0200, Hans Verkuil wrote: > The SECO CEC driver never decremented the HDMI device refcount. > CEC drivers only need the HDMI device pointer as a key in the > notifier list, it never accesses the device, so there is no > need to keep a reference. > > Signed-off-by: Hans Verkuil <hverkuil-cisco@xxxxxxxxx> Acked-by: Ettore Chimenti <ek5.chimenti@xxxxxxxxx> Thanks, Ettore > --- > drivers/media/platform/seco-cec/seco-cec.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/media/platform/seco-cec/seco-cec.c b/drivers/media/platform/seco-cec/seco-cec.c > index a425a10540c1..e5080d6f5b2d 100644 > --- a/drivers/media/platform/seco-cec/seco-cec.c > +++ b/drivers/media/platform/seco-cec/seco-cec.c > @@ -536,6 +536,7 @@ static int secocec_cec_get_notifier(struct cec_notifier **notify) > return -EPROBE_DEFER; > > *notify = cec_notifier_get_conn(d, m->conn); > + put_device(d); > > return 0; > } > -- > 2.20.1 >