• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/

Lines Matching defs:newcon

1416 void register_console(struct console *newcon)
1426 if (console_drivers && newcon->flags & CON_BOOT) {
1431 newcon->name, newcon->index);
1443 if (newcon->early_setup)
1444 newcon->early_setup();
1452 if (newcon->index < 0)
1453 newcon->index = 0;
1454 if (newcon->setup == NULL ||
1455 newcon->setup(newcon, NULL) == 0) {
1456 newcon->flags |= CON_ENABLED;
1457 if (newcon->device) {
1458 newcon->flags |= CON_CONSDEV;
1470 if (strcmp(console_cmdline[i].name, newcon->name) != 0)
1472 if (newcon->index >= 0 &&
1473 newcon->index != console_cmdline[i].index)
1475 if (newcon->index < 0)
1476 newcon->index = console_cmdline[i].index;
1479 newcon->flags |= CON_BRL;
1480 braille_register_console(newcon,
1487 if (newcon->setup &&
1488 newcon->setup(newcon, console_cmdline[i].options) != 0)
1490 newcon->flags |= CON_ENABLED;
1491 newcon->index = console_cmdline[i].index;
1493 newcon->flags |= CON_CONSDEV;
1499 if (!(newcon->flags & CON_ENABLED))
1508 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV))
1509 newcon->flags &= ~CON_PRINTBUFFER;
1516 if ((newcon->flags & CON_CONSDEV) || console_drivers == NULL) {
1517 newcon->next = console_drivers;
1518 console_drivers = newcon;
1519 if (newcon->next)
1520 newcon->next->flags &= ~CON_CONSDEV;
1522 newcon->next = console_drivers->next;
1523 console_drivers->next = newcon;
1525 if (newcon->flags & CON_PRINTBUFFER) {
1539 if (bcon && ((newcon->flags & (CON_CONSDEV | CON_BOOT)) == CON_CONSDEV)) {
1544 newcon->name, newcon->index);
1550 (newcon->flags & CON_BOOT) ? "boot" : "" ,
1551 newcon->name, newcon->index);