The Linux kernel identifies the driver with its:
None of the mentioned
Major number
Module
Device file
Answer and explanation
The Linux kernel uses the major number to identify and dispatch requests to the correct device driver. When a process accesses a device file, the kernel looks up the major number in its driver table (cdev_map for character devices) to find the registered driver and invoke the appropriate file operations.
