diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/acpi/acpi_memhotplug.c | 14 | ||||
-rw-r--r-- | drivers/acpi/processor_idle.c | 2 | ||||
-rw-r--r-- | drivers/char/ipmi/ipmi_si_intf.c | 4 | ||||
-rw-r--r-- | drivers/firmware/dcdbas.c | 7 | ||||
-rw-r--r-- | drivers/isdn/hisax/diva.c | 26 | ||||
-rw-r--r-- | drivers/isdn/hysdn/boardergo.c | 2 | ||||
-rw-r--r-- | drivers/md/dm-crypt.c | 3 | ||||
-rw-r--r-- | drivers/net/e100.c | 50 | ||||
-rw-r--r-- | drivers/scsi/eata_pio.c | 2 | ||||
-rw-r--r-- | drivers/serial/Kconfig | 12 |
10 files changed, 86 insertions, 36 deletions
diff --git a/drivers/acpi/acpi_memhotplug.c b/drivers/acpi/acpi_memhotplug.c index 98099de59b45..6bcd9e8e7bcb 100644 --- a/drivers/acpi/acpi_memhotplug.c +++ b/drivers/acpi/acpi_memhotplug.c | |||
@@ -85,6 +85,8 @@ struct acpi_memory_device { | |||
85 | struct list_head res_list; | 85 | struct list_head res_list; |
86 | }; | 86 | }; |
87 | 87 | ||
88 | static int acpi_hotmem_initialized; | ||
89 | |||
88 | static acpi_status | 90 | static acpi_status |
89 | acpi_memory_get_resource(struct acpi_resource *resource, void *context) | 91 | acpi_memory_get_resource(struct acpi_resource *resource, void *context) |
90 | { | 92 | { |
@@ -414,7 +416,7 @@ static int acpi_memory_device_add(struct acpi_device *device) | |||
414 | /* Set the device state */ | 416 | /* Set the device state */ |
415 | mem_device->state = MEMORY_POWER_ON_STATE; | 417 | mem_device->state = MEMORY_POWER_ON_STATE; |
416 | 418 | ||
417 | printk(KERN_INFO "%s \n", acpi_device_name(device)); | 419 | printk(KERN_DEBUG "%s \n", acpi_device_name(device)); |
418 | 420 | ||
419 | return result; | 421 | return result; |
420 | } | 422 | } |
@@ -438,6 +440,15 @@ static int acpi_memory_device_start (struct acpi_device *device) | |||
438 | struct acpi_memory_device *mem_device; | 440 | struct acpi_memory_device *mem_device; |
439 | int result = 0; | 441 | int result = 0; |
440 | 442 | ||
443 | /* | ||
444 | * Early boot code has recognized memory area by EFI/E820. | ||
445 | * If DSDT shows these memory devices on boot, hotplug is not necessary | ||
446 | * for them. So, it just returns until completion of this driver's | ||
447 | * start up. | ||
448 | */ | ||
449 | if (!acpi_hotmem_initialized) | ||
450 | return 0; | ||
451 | |||
441 | mem_device = acpi_driver_data(device); | 452 | mem_device = acpi_driver_data(device); |
442 | 453 | ||
443 | if (!acpi_memory_check_device(mem_device)) { | 454 | if (!acpi_memory_check_device(mem_device)) { |
@@ -537,6 +548,7 @@ static int __init acpi_memory_device_init(void) | |||
537 | return -ENODEV; | 548 | return -ENODEV; |
538 | } | 549 | } |
539 | 550 | ||
551 | acpi_hotmem_initialized = 1; | ||
540 | return 0; | 552 | return 0; |
541 | } | 553 | } |
542 | 554 | ||
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index e67144cf3c8b..65b3f056ad89 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
@@ -962,7 +962,7 @@ static int acpi_processor_get_power_info(struct acpi_processor *pr) | |||
962 | 962 | ||
963 | result = acpi_processor_get_power_info_cst(pr); | 963 | result = acpi_processor_get_power_info_cst(pr); |
964 | if (result == -ENODEV) | 964 | if (result == -ENODEV) |
965 | acpi_processor_get_power_info_fadt(pr); | 965 | result = acpi_processor_get_power_info_fadt(pr); |
966 | 966 | ||
967 | if (result) | 967 | if (result) |
968 | return result; | 968 | return result; |
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index 24825bdca8f4..e5cfb1fa47d1 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -1789,7 +1789,7 @@ static int __devinit ipmi_pci_probe(struct pci_dev *pdev, | |||
1789 | 1789 | ||
1790 | info = kzalloc(sizeof(*info), GFP_KERNEL); | 1790 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
1791 | if (!info) | 1791 | if (!info) |
1792 | return ENOMEM; | 1792 | return -ENOMEM; |
1793 | 1793 | ||
1794 | info->addr_source = "PCI"; | 1794 | info->addr_source = "PCI"; |
1795 | 1795 | ||
@@ -1810,7 +1810,7 @@ static int __devinit ipmi_pci_probe(struct pci_dev *pdev, | |||
1810 | kfree(info); | 1810 | kfree(info); |
1811 | printk(KERN_INFO "ipmi_si: %s: Unknown IPMI type: %d\n", | 1811 | printk(KERN_INFO "ipmi_si: %s: Unknown IPMI type: %d\n", |
1812 | pci_name(pdev), class_type); | 1812 | pci_name(pdev), class_type); |
1813 | return ENOMEM; | 1813 | return -ENOMEM; |
1814 | } | 1814 | } |
1815 | 1815 | ||
1816 | rv = pci_enable_device(pdev); | 1816 | rv = pci_enable_device(pdev); |
diff --git a/drivers/firmware/dcdbas.c b/drivers/firmware/dcdbas.c index 8bcb58cd4ac0..1865b56fb141 100644 --- a/drivers/firmware/dcdbas.c +++ b/drivers/firmware/dcdbas.c | |||
@@ -8,7 +8,7 @@ | |||
8 | * | 8 | * |
9 | * See Documentation/dcdbas.txt for more information. | 9 | * See Documentation/dcdbas.txt for more information. |
10 | * | 10 | * |
11 | * Copyright (C) 1995-2005 Dell Inc. | 11 | * Copyright (C) 1995-2006 Dell Inc. |
12 | * | 12 | * |
13 | * This program is free software; you can redistribute it and/or modify | 13 | * This program is free software; you can redistribute it and/or modify |
14 | * it under the terms of the GNU General Public License v2.0 as published by | 14 | * it under the terms of the GNU General Public License v2.0 as published by |
@@ -40,7 +40,7 @@ | |||
40 | #include "dcdbas.h" | 40 | #include "dcdbas.h" |
41 | 41 | ||
42 | #define DRIVER_NAME "dcdbas" | 42 | #define DRIVER_NAME "dcdbas" |
43 | #define DRIVER_VERSION "5.6.0-2" | 43 | #define DRIVER_VERSION "5.6.0-3.2" |
44 | #define DRIVER_DESCRIPTION "Dell Systems Management Base Driver" | 44 | #define DRIVER_DESCRIPTION "Dell Systems Management Base Driver" |
45 | 45 | ||
46 | static struct platform_device *dcdbas_pdev; | 46 | static struct platform_device *dcdbas_pdev; |
@@ -175,6 +175,9 @@ static ssize_t smi_data_write(struct kobject *kobj, char *buf, loff_t pos, | |||
175 | { | 175 | { |
176 | ssize_t ret; | 176 | ssize_t ret; |
177 | 177 | ||
178 | if ((pos + count) > MAX_SMI_DATA_BUF_SIZE) | ||
179 | return -EINVAL; | ||
180 | |||
178 | mutex_lock(&smi_data_lock); | 181 | mutex_lock(&smi_data_lock); |
179 | 182 | ||
180 | ret = smi_data_buf_realloc(pos + count); | 183 | ret = smi_data_buf_realloc(pos + count); |
diff --git a/drivers/isdn/hisax/diva.c b/drivers/isdn/hisax/diva.c index 7e95f04f13da..3dacfff93f5f 100644 --- a/drivers/isdn/hisax/diva.c +++ b/drivers/isdn/hisax/diva.c | |||
@@ -716,8 +716,10 @@ release_io_diva(struct IsdnCardState *cs) | |||
716 | 716 | ||
717 | *cfg = 0; /* disable INT0/1 */ | 717 | *cfg = 0; /* disable INT0/1 */ |
718 | *cfg = 2; /* reset pending INT0 */ | 718 | *cfg = 2; /* reset pending INT0 */ |
719 | iounmap((void *)cs->hw.diva.cfg_reg); | 719 | if (cs->hw.diva.cfg_reg) |
720 | iounmap((void *)cs->hw.diva.pci_cfg); | 720 | iounmap((void *)cs->hw.diva.cfg_reg); |
721 | if (cs->hw.diva.pci_cfg) | ||
722 | iounmap((void *)cs->hw.diva.pci_cfg); | ||
721 | return; | 723 | return; |
722 | } else if (cs->subtyp != DIVA_IPAC_ISA) { | 724 | } else if (cs->subtyp != DIVA_IPAC_ISA) { |
723 | del_timer(&cs->hw.diva.tl); | 725 | del_timer(&cs->hw.diva.tl); |
@@ -734,6 +736,23 @@ release_io_diva(struct IsdnCardState *cs) | |||
734 | } | 736 | } |
735 | 737 | ||
736 | static void | 738 | static void |
739 | iounmap_diva(struct IsdnCardState *cs) | ||
740 | { | ||
741 | if ((cs->subtyp == DIVA_IPAC_PCI) || (cs->subtyp == DIVA_IPACX_PCI)) { | ||
742 | if (cs->hw.diva.cfg_reg) { | ||
743 | iounmap((void *)cs->hw.diva.cfg_reg); | ||
744 | cs->hw.diva.cfg_reg = 0; | ||
745 | } | ||
746 | if (cs->hw.diva.pci_cfg) { | ||
747 | iounmap((void *)cs->hw.diva.pci_cfg); | ||
748 | cs->hw.diva.pci_cfg = 0; | ||
749 | } | ||
750 | } | ||
751 | |||
752 | return; | ||
753 | } | ||
754 | |||
755 | static void | ||
737 | reset_diva(struct IsdnCardState *cs) | 756 | reset_diva(struct IsdnCardState *cs) |
738 | { | 757 | { |
739 | if (cs->subtyp == DIVA_IPAC_ISA) { | 758 | if (cs->subtyp == DIVA_IPAC_ISA) { |
@@ -1069,11 +1088,13 @@ setup_diva(struct IsdnCard *card) | |||
1069 | 1088 | ||
1070 | if (!cs->irq) { | 1089 | if (!cs->irq) { |
1071 | printk(KERN_WARNING "Diva: No IRQ for PCI card found\n"); | 1090 | printk(KERN_WARNING "Diva: No IRQ for PCI card found\n"); |
1091 | iounmap_diva(cs); | ||
1072 | return(0); | 1092 | return(0); |
1073 | } | 1093 | } |
1074 | 1094 | ||
1075 | if (!cs->hw.diva.cfg_reg) { | 1095 | if (!cs->hw.diva.cfg_reg) { |
1076 | printk(KERN_WARNING "Diva: No IO-Adr for PCI card found\n"); | 1096 | printk(KERN_WARNING "Diva: No IO-Adr for PCI card found\n"); |
1097 | iounmap_diva(cs); | ||
1077 | return(0); | 1098 | return(0); |
1078 | } | 1099 | } |
1079 | cs->irq_flags |= IRQF_SHARED; | 1100 | cs->irq_flags |= IRQF_SHARED; |
@@ -1123,6 +1144,7 @@ ready: | |||
1123 | CardType[card->typ], | 1144 | CardType[card->typ], |
1124 | cs->hw.diva.cfg_reg, | 1145 | cs->hw.diva.cfg_reg, |
1125 | cs->hw.diva.cfg_reg + bytecnt); | 1146 | cs->hw.diva.cfg_reg + bytecnt); |
1147 | iounmap_diva(cs); | ||
1126 | return (0); | 1148 | return (0); |
1127 | } | 1149 | } |
1128 | } | 1150 | } |
diff --git a/drivers/isdn/hysdn/boardergo.c b/drivers/isdn/hysdn/boardergo.c index 8bbe33ae06db..82e42a80dc4b 100644 --- a/drivers/isdn/hysdn/boardergo.c +++ b/drivers/isdn/hysdn/boardergo.c | |||
@@ -403,7 +403,7 @@ ergo_releasehardware(hysdn_card * card) | |||
403 | free_irq(card->irq, card); /* release interrupt */ | 403 | free_irq(card->irq, card); /* release interrupt */ |
404 | release_region(card->iobase + PCI9050_INTR_REG, 1); /* release all io ports */ | 404 | release_region(card->iobase + PCI9050_INTR_REG, 1); /* release all io ports */ |
405 | release_region(card->iobase + PCI9050_USER_IO, 1); | 405 | release_region(card->iobase + PCI9050_USER_IO, 1); |
406 | vfree(card->dpram); | 406 | iounmap(card->dpram); |
407 | card->dpram = NULL; /* release shared mem */ | 407 | card->dpram = NULL; /* release shared mem */ |
408 | } /* ergo_releasehardware */ | 408 | } /* ergo_releasehardware */ |
409 | 409 | ||
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c index 655d816760e5..a625576fdeeb 100644 --- a/drivers/md/dm-crypt.c +++ b/drivers/md/dm-crypt.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/slab.h> | 16 | #include <linux/slab.h> |
17 | #include <linux/crypto.h> | 17 | #include <linux/crypto.h> |
18 | #include <linux/workqueue.h> | 18 | #include <linux/workqueue.h> |
19 | #include <linux/backing-dev.h> | ||
19 | #include <asm/atomic.h> | 20 | #include <asm/atomic.h> |
20 | #include <linux/scatterlist.h> | 21 | #include <linux/scatterlist.h> |
21 | #include <asm/page.h> | 22 | #include <asm/page.h> |
@@ -602,7 +603,7 @@ static void process_write(struct crypt_io *io) | |||
602 | 603 | ||
603 | /* out of memory -> run queues */ | 604 | /* out of memory -> run queues */ |
604 | if (remaining) | 605 | if (remaining) |
605 | blk_congestion_wait(bio_data_dir(clone), HZ/100); | 606 | congestion_wait(bio_data_dir(clone), HZ/100); |
606 | } | 607 | } |
607 | } | 608 | } |
608 | 609 | ||
diff --git a/drivers/net/e100.c b/drivers/net/e100.c index 27d5d2f02533..a3a08a5dd185 100644 --- a/drivers/net/e100.c +++ b/drivers/net/e100.c | |||
@@ -2039,7 +2039,6 @@ static int e100_change_mtu(struct net_device *netdev, int new_mtu) | |||
2039 | return 0; | 2039 | return 0; |
2040 | } | 2040 | } |
2041 | 2041 | ||
2042 | #ifdef CONFIG_PM | ||
2043 | static int e100_asf(struct nic *nic) | 2042 | static int e100_asf(struct nic *nic) |
2044 | { | 2043 | { |
2045 | /* ASF can be enabled from eeprom */ | 2044 | /* ASF can be enabled from eeprom */ |
@@ -2048,7 +2047,6 @@ static int e100_asf(struct nic *nic) | |||
2048 | !(nic->eeprom[eeprom_config_asf] & eeprom_gcl) && | 2047 | !(nic->eeprom[eeprom_config_asf] & eeprom_gcl) && |
2049 | ((nic->eeprom[eeprom_smbus_addr] & 0xFF) != 0xFE)); | 2048 | ((nic->eeprom[eeprom_smbus_addr] & 0xFF) != 0xFE)); |
2050 | } | 2049 | } |
2051 | #endif | ||
2052 | 2050 | ||
2053 | static int e100_up(struct nic *nic) | 2051 | static int e100_up(struct nic *nic) |
2054 | { | 2052 | { |
@@ -2715,34 +2713,32 @@ static void __devexit e100_remove(struct pci_dev *pdev) | |||
2715 | } | 2713 | } |
2716 | } | 2714 | } |
2717 | 2715 | ||
2716 | #ifdef CONFIG_PM | ||
2718 | static int e100_suspend(struct pci_dev *pdev, pm_message_t state) | 2717 | static int e100_suspend(struct pci_dev *pdev, pm_message_t state) |
2719 | { | 2718 | { |
2720 | struct net_device *netdev = pci_get_drvdata(pdev); | 2719 | struct net_device *netdev = pci_get_drvdata(pdev); |
2721 | struct nic *nic = netdev_priv(netdev); | 2720 | struct nic *nic = netdev_priv(netdev); |
2722 | 2721 | ||
2723 | if (netif_running(netdev)) | 2722 | netif_poll_disable(nic->netdev); |
2724 | e100_down(nic); | 2723 | del_timer_sync(&nic->watchdog); |
2725 | e100_hw_reset(nic); | 2724 | netif_carrier_off(nic->netdev); |
2726 | netif_device_detach(netdev); | ||
2727 | 2725 | ||
2728 | #ifdef CONFIG_PM | ||
2729 | pci_save_state(pdev); | 2726 | pci_save_state(pdev); |
2730 | if (nic->flags & (wol_magic | e100_asf(nic))) | 2727 | |
2731 | #else | 2728 | if ((nic->flags & wol_magic) | e100_asf(nic)) { |
2732 | if (nic->flags & (wol_magic)) | 2729 | pci_enable_wake(pdev, PCI_D3hot, 1); |
2733 | #endif | 2730 | pci_enable_wake(pdev, PCI_D3cold, 1); |
2734 | pci_enable_wake(pdev, pci_choose_state(pdev, state), 1); | 2731 | } else { |
2735 | else | 2732 | pci_enable_wake(pdev, PCI_D3hot, 0); |
2736 | /* disable PME */ | 2733 | pci_enable_wake(pdev, PCI_D3cold, 0); |
2737 | pci_enable_wake(pdev, 0, 0); | 2734 | } |
2738 | 2735 | ||
2739 | pci_disable_device(pdev); | 2736 | pci_disable_device(pdev); |
2740 | pci_set_power_state(pdev, pci_choose_state(pdev, state)); | 2737 | pci_set_power_state(pdev, PCI_D3hot); |
2741 | 2738 | ||
2742 | return 0; | 2739 | return 0; |
2743 | } | 2740 | } |
2744 | 2741 | ||
2745 | #ifdef CONFIG_PM | ||
2746 | static int e100_resume(struct pci_dev *pdev) | 2742 | static int e100_resume(struct pci_dev *pdev) |
2747 | { | 2743 | { |
2748 | struct net_device *netdev = pci_get_drvdata(pdev); | 2744 | struct net_device *netdev = pci_get_drvdata(pdev); |
@@ -2764,7 +2760,23 @@ static int e100_resume(struct pci_dev *pdev) | |||
2764 | 2760 | ||
2765 | static void e100_shutdown(struct pci_dev *pdev) | 2761 | static void e100_shutdown(struct pci_dev *pdev) |
2766 | { | 2762 | { |
2767 | e100_suspend(pdev, PMSG_SUSPEND); | 2763 | struct net_device *netdev = pci_get_drvdata(pdev); |
2764 | struct nic *nic = netdev_priv(netdev); | ||
2765 | |||
2766 | netif_poll_disable(nic->netdev); | ||
2767 | del_timer_sync(&nic->watchdog); | ||
2768 | netif_carrier_off(nic->netdev); | ||
2769 | |||
2770 | if ((nic->flags & wol_magic) | e100_asf(nic)) { | ||
2771 | pci_enable_wake(pdev, PCI_D3hot, 1); | ||
2772 | pci_enable_wake(pdev, PCI_D3cold, 1); | ||
2773 | } else { | ||
2774 | pci_enable_wake(pdev, PCI_D3hot, 0); | ||
2775 | pci_enable_wake(pdev, PCI_D3cold, 0); | ||
2776 | } | ||
2777 | |||
2778 | pci_disable_device(pdev); | ||
2779 | pci_set_power_state(pdev, PCI_D3hot); | ||
2768 | } | 2780 | } |
2769 | 2781 | ||
2770 | /* ------------------ PCI Error Recovery infrastructure -------------- */ | 2782 | /* ------------------ PCI Error Recovery infrastructure -------------- */ |
@@ -2848,9 +2860,9 @@ static struct pci_driver e100_driver = { | |||
2848 | .id_table = e100_id_table, | 2860 | .id_table = e100_id_table, |
2849 | .probe = e100_probe, | 2861 | .probe = e100_probe, |
2850 | .remove = __devexit_p(e100_remove), | 2862 | .remove = __devexit_p(e100_remove), |
2863 | #ifdef CONFIG_PM | ||
2851 | /* Power Management hooks */ | 2864 | /* Power Management hooks */ |
2852 | .suspend = e100_suspend, | 2865 | .suspend = e100_suspend, |
2853 | #ifdef CONFIG_PM | ||
2854 | .resume = e100_resume, | 2866 | .resume = e100_resume, |
2855 | #endif | 2867 | #endif |
2856 | .shutdown = e100_shutdown, | 2868 | .shutdown = e100_shutdown, |
diff --git a/drivers/scsi/eata_pio.c b/drivers/scsi/eata_pio.c index 811d8840707e..2dbb66d2f0a7 100644 --- a/drivers/scsi/eata_pio.c +++ b/drivers/scsi/eata_pio.c | |||
@@ -203,7 +203,7 @@ static irqreturn_t do_eata_pio_int_handler(int irq, void *dev_id) | |||
203 | irqreturn_t ret; | 203 | irqreturn_t ret; |
204 | 204 | ||
205 | spin_lock_irqsave(dev->host_lock, flags); | 205 | spin_lock_irqsave(dev->host_lock, flags); |
206 | ret = eata_pio_int_handler(irq, dev_id, regs); | 206 | ret = eata_pio_int_handler(irq, dev_id); |
207 | spin_unlock_irqrestore(dev->host_lock, flags); | 207 | spin_unlock_irqrestore(dev->host_lock, flags); |
208 | return ret; | 208 | return ret; |
209 | } | 209 | } |
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index b0d502622d94..0b71e7d18903 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig | |||
@@ -767,37 +767,37 @@ config SERIAL_CPM_SCC1 | |||
767 | bool "Support for SCC1 serial port" | 767 | bool "Support for SCC1 serial port" |
768 | depends on SERIAL_CPM=y | 768 | depends on SERIAL_CPM=y |
769 | help | 769 | help |
770 | Select the is option to use SCC1 as a serial port | 770 | Select this option to use SCC1 as a serial port |
771 | 771 | ||
772 | config SERIAL_CPM_SCC2 | 772 | config SERIAL_CPM_SCC2 |
773 | bool "Support for SCC2 serial port" | 773 | bool "Support for SCC2 serial port" |
774 | depends on SERIAL_CPM=y | 774 | depends on SERIAL_CPM=y |
775 | help | 775 | help |
776 | Select the is option to use SCC2 as a serial port | 776 | Select this option to use SCC2 as a serial port |
777 | 777 | ||
778 | config SERIAL_CPM_SCC3 | 778 | config SERIAL_CPM_SCC3 |
779 | bool "Support for SCC3 serial port" | 779 | bool "Support for SCC3 serial port" |
780 | depends on SERIAL_CPM=y | 780 | depends on SERIAL_CPM=y |
781 | help | 781 | help |
782 | Select the is option to use SCC3 as a serial port | 782 | Select this option to use SCC3 as a serial port |
783 | 783 | ||
784 | config SERIAL_CPM_SCC4 | 784 | config SERIAL_CPM_SCC4 |
785 | bool "Support for SCC4 serial port" | 785 | bool "Support for SCC4 serial port" |
786 | depends on SERIAL_CPM=y | 786 | depends on SERIAL_CPM=y |
787 | help | 787 | help |
788 | Select the is option to use SCC4 as a serial port | 788 | Select this option to use SCC4 as a serial port |
789 | 789 | ||
790 | config SERIAL_CPM_SMC1 | 790 | config SERIAL_CPM_SMC1 |
791 | bool "Support for SMC1 serial port" | 791 | bool "Support for SMC1 serial port" |
792 | depends on SERIAL_CPM=y | 792 | depends on SERIAL_CPM=y |
793 | help | 793 | help |
794 | Select the is option to use SMC1 as a serial port | 794 | Select this option to use SMC1 as a serial port |
795 | 795 | ||
796 | config SERIAL_CPM_SMC2 | 796 | config SERIAL_CPM_SMC2 |
797 | bool "Support for SMC2 serial port" | 797 | bool "Support for SMC2 serial port" |
798 | depends on SERIAL_CPM=y | 798 | depends on SERIAL_CPM=y |
799 | help | 799 | help |
800 | Select the is option to use SMC2 as a serial port | 800 | Select this option to use SMC2 as a serial port |
801 | 801 | ||
802 | config SERIAL_SGI_L1_CONSOLE | 802 | config SERIAL_SGI_L1_CONSOLE |
803 | bool "SGI Altix L1 serial console support" | 803 | bool "SGI Altix L1 serial console support" |