Merge pull request #104 from linD026/master

ioctl: Remove unnecessary initialization
This commit is contained in:
Jim Huang 2021-09-13 16:15:08 +08:00 committed by GitHub
commit 55b77fac8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,7 +149,7 @@ static struct file_operations fops = {
static int ioctl_init(void)
{
dev_t dev = MKDEV(test_ioctl_major, 0);
dev_t dev;
int alloc_ret = 0;
int cdev_ret = 0;
alloc_ret = alloc_chrdev_region(&dev, 0, num_of_dev, DRIVER_NAME);