私が理解しているように、の署名は次のregister_chrdev_region
ように記述されています
extern int register_chrdev_region(dev_t firstmajor,unsigned int count,const char*dev_name);
//firstmajor: The major number requested for reservation of the dirver
//dev_name: Name of the device associated with the major number(for procfs and sysfs)
//count: Total number of contagious device numbes that is requested??
count
関数での引数の使用法がわかりません(alloc_chrdev_region
同様に)。伝染性のあるデバイス番号をドライバーに予約する簡単な使用例を説明してください
http://www.makelinux.net/ldd3/chp-3-sect-2の 3.2.2 を参照