aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/drivers/line.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/um/drivers/line.c')
-rw-r--r--arch/um/drivers/line.c21
1 files changed, 10 insertions, 11 deletions
diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c
index 80ade224d740..9af55ece198d 100644
--- a/arch/um/drivers/line.c
+++ b/arch/um/drivers/line.c
@@ -500,11 +500,9 @@ void close_lines(struct line *lines, int nlines)
500/* Common setup code for both startup command line and mconsole initialization. 500/* Common setup code for both startup command line and mconsole initialization.
501 * @lines contains the the array (of size @num) to modify; 501 * @lines contains the the array (of size @num) to modify;
502 * @init is the setup string; 502 * @init is the setup string;
503 * @all_allowed is a boolean saying if we can setup the whole @lines 503 */
504 * at once. For instance, it will be usually true for startup init. (where we
505 * can use con=xterm) and false for mconsole.*/
506 504
507int line_setup(struct line *lines, unsigned int num, char *init, int all_allowed) 505int line_setup(struct line *lines, unsigned int num, char *init)
508{ 506{
509 int i, n; 507 int i, n;
510 char *end; 508 char *end;
@@ -545,11 +543,6 @@ int line_setup(struct line *lines, unsigned int num, char *init, int all_allowed
545 } 543 }
546 } 544 }
547 } 545 }
548 else if(!all_allowed){
549 printk("line_setup - can't configure all devices from "
550 "mconsole\n");
551 return 0;
552 }
553 else { 546 else {
554 for(i = 0; i < num; i++){ 547 for(i = 0; i < num; i++){
555 if(lines[i].init_pri <= INIT_ALL){ 548 if(lines[i].init_pri <= INIT_ALL){
@@ -569,12 +562,18 @@ int line_config(struct line *lines, unsigned int num, char *str)
569{ 562{
570 char *new; 563 char *new;
571 564
565 if(*str == '='){
566 printk("line_config - can't configure all devices from "
567 "mconsole\n");
568 return 1;
569 }
570
572 new = kstrdup(str, GFP_KERNEL); 571 new = kstrdup(str, GFP_KERNEL);
573 if(new == NULL){ 572 if(new == NULL){
574 printk("line_config - kstrdup failed\n"); 573 printk("line_config - kstrdup failed\n");
575 return -ENOMEM; 574 return -ENOMEM;
576 } 575 }
577 return !line_setup(lines, num, new, 0); 576 return !line_setup(lines, num, new);
578} 577}
579 578
580int line_get_config(char *name, struct line *lines, unsigned int num, char *str, 579int line_get_config(char *name, struct line *lines, unsigned int num, char *str,
@@ -628,7 +627,7 @@ int line_remove(struct line *lines, unsigned int num, int n)
628 char config[sizeof("conxxxx=none\0")]; 627 char config[sizeof("conxxxx=none\0")];
629 628
630 sprintf(config, "%d=none", n); 629 sprintf(config, "%d=none", n);
631 return !line_setup(lines, num, config, 0); 630 return !line_setup(lines, num, config);
632} 631}
633 632
634struct tty_driver *line_register_devfs(struct lines *set, 633struct tty_driver *line_register_devfs(struct lines *set,