diff options
| author | Michel Ludwig <[email protected]> | 2007-06-15 11:02:56 -0300 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2010-05-18 00:39:26 -0300 |
| commit | 8c9d26fd55ac7378ad0e2afd2bd122fa060bdaee (patch) | |
| tree | e240f3942427572498e8a78cf9e0d62f81b65196 | |
| parent | 22927e8e0007fe653dd2824cf86b799b43e3bff8 (diff) | |
V4L/DVB (12773): tm6000: fix module unregister
Signed-off-by: Michel Ludwig <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
| -rw-r--r-- | drivers/staging/tm6000/tm6000-video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/tm6000/tm6000-video.c b/drivers/staging/tm6000/tm6000-video.c index ffd2fe7ed984..41073ed2cb59 100644 --- a/drivers/staging/tm6000/tm6000-video.c +++ b/drivers/staging/tm6000/tm6000-video.c @@ -1535,7 +1535,7 @@ int tm6000_v4l2_unregister(struct tm6000_core *dev) list_for_each_safe(pos, tmp, &tm6000_corelist) { h = list_entry(pos, struct tm6000_core, tm6000_corelist); if (h == dev) { - list_del(list); + list_del(pos); } } |