Patch: linux-2.5.2-pre8/drivers/media/video/tvmixer.c kdev_t compilation fix

Adam J. Richter (adam@yggdrasil.com)
Sat, 5 Jan 2002 01:22:40 -0800


--pWyiEgJYm5f9v55/
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

linux-2.5.2-pre8/drivers/media/video/tvmixer.c used
MINOR where it should have used minor. Here is the fix
(untested aside from seeing that it compiles).

This is the only compilation fix for the drivers/media
subtree. That is why I am submitting it by itself.

-- 
Adam J. Richter     __     ______________   4880 Stevens Creek Blvd, Suite 104
adam@yggdrasil.com     \ /                  San Jose, California 95129-1034
+1 408 261-6630         | g g d r a s i l   United States of America
fax +1 408 261-6631      "Free Software For The Rest Of Us."

--pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="tv.diff"

--- linux-2.5.2-pre8/drivers/media/video/tvmixer.c Wed Oct 17 14:19:20 2001 +++ linux/drivers/media/video/tvmixer.c Sat Jan 5 01:17:51 2002 @@ -177,7 +177,7 @@ static int tvmixer_open(struct inode *inode, struct file *file) { - int i, minor = MINOR(inode->i_rdev); + int i, minor = minor(inode->i_rdev); struct TVMIXER *mix = NULL; struct i2c_client *client = NULL;

--pWyiEgJYm5f9v55/-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/