Skip to content

Commit

Permalink
[media] staging: as102: Add missing function argument
Browse files Browse the repository at this point in the history
Add missing dev argument in dev_err() call to correct an error
introduced in commit 8801028

Signed-off-by: Sylwester Nawrocki <snjw23@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Sylwester Nawrocki authored and Mauro Carvalho Chehab committed Nov 24, 2011
1 parent dbea188 commit 1ec9a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/media/as102/as102_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 1ec9a35

Please sign in to comment.