mirror of https://gitee.com/openkylin/linux.git
[PATCH] jsm: use dynamic major number allocation
The jsm driver uses a static number of 253. The major number 253 is a reserved for "LOCAL/EXPERIMENTAL USE" by both char and block devices. So take advantage of the dynamic allocation of major number by the kernel. Signed-off-by: V. Ananda Krishnan <mansarov@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
49f2991585
commit
9539c1d495
|
@ -42,7 +42,7 @@ struct uart_driver jsm_uart_driver = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.driver_name = JSM_DRIVER_NAME,
|
.driver_name = JSM_DRIVER_NAME,
|
||||||
.dev_name = "ttyn",
|
.dev_name = "ttyn",
|
||||||
.major = 253,
|
.major = 0,
|
||||||
.minor = JSM_MINOR_START,
|
.minor = JSM_MINOR_START,
|
||||||
.nr = NR_PORTS,
|
.nr = NR_PORTS,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue