How can I create a device node from the init_module code of a Linux kernel module?

I am writing a module for the Linux kernel, and I want to create some device nodes in the init() function: int init_module(void) { Major = register_chrdev(0, DEVICE_NAME, &fops); // No...