[media] bttv: remove unneeded locking comments

After Mauro's "bttv: Fix locking issues due to BKL removal code" there
are a number of comments that are no longer needed about lock ordering.
Remove them.

Signed-off-by: Brandon Philips <bphilips@suse.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

authored by Brandon Philips and committed by Mauro Carvalho Chehab 692e42df 587f0d5d

-20
-20
drivers/media/video/bt8xx/bttv-driver.c
··· 2359 2359 fh->ov.field = win->field; 2360 2360 fh->ov.setup_ok = 1; 2361 2361 2362 - /* 2363 - * FIXME: btv is protected by btv->lock mutex, while btv->init 2364 - * is protected by fh->cap.vb_lock. This seems to open the 2365 - * possibility for some race situations. Maybe the better would 2366 - * be to unify those locks or to use another way to store the 2367 - * init values that will be consumed by videobuf callbacks 2368 - */ 2369 2362 btv->init.ov.w.width = win->w.width; 2370 2363 btv->init.ov.w.height = win->w.height; 2371 2364 btv->init.ov.field = win->field; ··· 3213 3220 return -ENOMEM; 3214 3221 file->private_data = fh; 3215 3222 3216 - /* 3217 - * btv is protected by btv->lock mutex, while btv->init and other 3218 - * streaming vars are protected by fh->cap.vb_lock. We need to take 3219 - * care of both locks to avoid troubles. However, vb_lock is used also 3220 - * inside videobuf, without calling buf->lock. So, it is a very bad 3221 - * idea to hold both locks at the same time. 3222 - * Let's first copy btv->init at fh, holding cap.vb_lock, and then work 3223 - * with the rest of init, holding btv->lock. 3224 - */ 3225 3223 *fh = btv->init; 3226 3224 3227 3225 fh->type = type; ··· 3287 3303 3288 3304 /* free stuff */ 3289 3305 3290 - /* 3291 - * videobuf uses cap.vb_lock - we should avoid holding btv->lock, 3292 - * otherwise we may have dead lock conditions 3293 - */ 3294 3306 videobuf_mmap_free(&fh->cap); 3295 3307 videobuf_mmap_free(&fh->vbi); 3296 3308 v4l2_prio_close(&btv->prio, fh->prio);