device number registration

I would THANK if you answer my doubts in DETAILS please.

Here's a sample code to create a device:

if(scull_major) {
  dev=MKDEV(scull_major, scull_minor);
  result=register_chrdev_region(dev, scull_nr_devs, "scull");
} else{
   result=alloc_chrdev_region(&dev, scull_minor, scull_nr_devs,  "scull");
 scull_major=MAJOR(dev);
}

if(result < 0)
{
   printk(KERN_WARNING "scull:can't get major %d\n", scull_major);
   return result;
}
  1. I didn't understand the first line! In the second and third lines, a device is created using the given minor and major numbers (I am sure this is a static allocation) and register_chrdev creates multiple instances of it.
    what about the first line? I can't understand what that if(major number) doing there, what's so relevant to it?

  2. if the major number is not created it goes to while n creates a dynamic major number. Major number means the driver ID to which the device associates with, OK? but so far, how would the kernel know about which driver it shall connect it? it just allocates one dynamically!

!!! what's so relevant between major number and device numbers in 3? major number is the driver number the device associates with and it's not the device number (that's minor number). So, why 3 notes that?

  1. Why do we need a seperate script to read /proc/devices file?

Please post what Operating System and version you have and what Shell (or other language) this is? The syntax is alien to me because there are no space characters between commands and code block brackets.

This alien language is undoubtedly C and this is part of a Linux device driver code.

@dr_mabuse The first line is a very common C shortcut for

if(scull_major != 0)

or the equivalent

if(scull_major != NULL)

Beyond that, have a look at what alloc_chrdev_region is doing to investigate your second question. Chapter 3 of this book might help you.