Messages in this thread Patch in this message |  | | Date | Sat, 5 Jan 2002 01:22:40 -0800 | | From | "Adam J. Richter" <> | | | Subject | Patch: linux-2.5.2-pre8/drivers/media/video/tvmixer.c kdev_t compilation fix |
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."--- 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;
|  |