[media] staging: as102: Add missing function argument

Add missing dev argument in dev_err() call to correct an error
introduced in commit 880102898f

Signed-off-by: Sylwester Nawrocki <snjw23@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Sylwester Nawrocki 2011-11-08 19:16:04 -03:00 committed by Mauro Carvalho Chehab
parent dbea188036
commit 1ec9a35e1c
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ int as102_dvb_register(struct as102_dev_t *as102_dev)
ret = dvb_dmx_init(&as102_dev->dvb_dmx);
if (ret < 0) {
dev_err("%s: dvb_dmx_init() failed: %d\n", __func__, ret);
dev_err(dev, "%s: dvb_dmx_init() failed: %d\n", __func__, ret);
goto edmxinit;
}