From: Erik Arfvidson <erik.arfvidson@xxxxxxxxxx> this patch changes variable registered from bool to int Signed-off-by: Erik Arfvidson <erik.arfvidson@xxxxxxxxxx> Signed-off-by: Benjamin Romer <benjamin.romer@xxxxxxxxxx> --- drivers/staging/unisys/visorchipset/file.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/unisys/visorchipset/file.c b/drivers/staging/unisys/visorchipset/file.c index e51fd4e..0e1bb93 100644 --- a/drivers/staging/unisys/visorchipset/file.c +++ b/drivers/staging/unisys/visorchipset/file.c @@ -31,7 +31,7 @@ static struct cdev file_cdev; static struct visorchannel **file_controlvm_channel; static dev_t majordev = -1; /**< indicates major num for device */ -static BOOL registered = FALSE; +static int registered; static int visorchipset_open(struct inode *inode, struct file *file); static int visorchipset_release(struct inode *inode, struct file *file); @@ -64,7 +64,7 @@ visorchipset_file_init(dev_t major_dev, struct visorchannel **controlvm_channel) MYDRVNAME); return -1; } - registered = TRUE; + registered = 1; INFODRV("New major number %d registered\n", MAJOR(majordev)); } else { /* static major device number registration required */ @@ -72,7 +72,7 @@ visorchipset_file_init(dev_t major_dev, struct visorchannel **controlvm_channel) ERRDRV("Unable to register char device %s", MYDRVNAME); return -1; } - registered = TRUE; + registered = 1; INFODRV("Static major number %d registered\n", MAJOR(majordev)); } rc = cdev_add(&file_cdev, MKDEV(MAJOR(majordev), 0), 1); @@ -96,7 +96,7 @@ visorchipset_file_cleanup(void) unregister_chrdev_region(majordev, 1); majordev = MKDEV(0, 0); } - registered = FALSE; + registered = 0; } } -- 2.1.0 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel