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

Commit a024c1a6 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] bttv: fix s_tuner for radio



Fix typo: g_tuner should have been s_tuner.

Tested with a bttv card.

Cc: stable@kernel.org
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 50e9efd6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3474,7 +3474,7 @@ static int radio_s_tuner(struct file *file, void *priv,
	if (0 != t->index)
		return -EINVAL;

	bttv_call_all(btv, tuner, g_tuner, t);
	bttv_call_all(btv, tuner, s_tuner, t);
	return 0;
}