diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-01-15 06:43:16 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-03-31 10:15:55 -0500 |
commit | 70294b468302fd7a0a99dad935c7ba5322989345 (patch) | |
tree | e54b0b7c85517ef717f3755e06ca08fbb0f5937e /drivers/scsi/pcmcia/nsp_cs.c | |
parent | 4bbed5231468014b500b048d7370a1c6c349231a (diff) |
[PATCH] pcmcia: remove unneeded Vcc pseudo setting
As we do not allow setting Vcc in the pcmcia core, and Vpp1 and
Vpp2 can only be set to the same value, a lot of code can be
streamlined.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/scsi/pcmcia/nsp_cs.c')
-rw-r--r-- | drivers/scsi/pcmcia/nsp_cs.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/scsi/pcmcia/nsp_cs.c b/drivers/scsi/pcmcia/nsp_cs.c index e313b40b7043..e41e1febe895 100644 --- a/drivers/scsi/pcmcia/nsp_cs.c +++ b/drivers/scsi/pcmcia/nsp_cs.c | |||
@@ -1627,7 +1627,6 @@ static int nsp_cs_attach(struct pcmcia_device *p_dev) | |||
1627 | 1627 | ||
1628 | /* General socket configuration */ | 1628 | /* General socket configuration */ |
1629 | link->conf.Attributes = CONF_ENABLE_IRQ; | 1629 | link->conf.Attributes = CONF_ENABLE_IRQ; |
1630 | link->conf.Vcc = 50; | ||
1631 | link->conf.IntType = INT_MEMORY_AND_IO; | 1630 | link->conf.IntType = INT_MEMORY_AND_IO; |
1632 | link->conf.Present = PRESENT_OPTION; | 1631 | link->conf.Present = PRESENT_OPTION; |
1633 | 1632 | ||
@@ -1709,7 +1708,6 @@ static void nsp_cs_config(dev_link_t *link) | |||
1709 | 1708 | ||
1710 | /* Look up the current Vcc */ | 1709 | /* Look up the current Vcc */ |
1711 | CS_CHECK(GetConfigurationInfo, pcmcia_get_configuration_info(handle, &conf)); | 1710 | CS_CHECK(GetConfigurationInfo, pcmcia_get_configuration_info(handle, &conf)); |
1712 | link->conf.Vcc = conf.Vcc; | ||
1713 | 1711 | ||
1714 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; | 1712 | tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY; |
1715 | CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple)); | 1713 | CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(handle, &tuple)); |
@@ -1743,10 +1741,10 @@ static void nsp_cs_config(dev_link_t *link) | |||
1743 | } | 1741 | } |
1744 | 1742 | ||
1745 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) { | 1743 | if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM)) { |
1746 | link->conf.Vpp1 = link->conf.Vpp2 = | 1744 | link->conf.Vpp = |
1747 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; | 1745 | cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; |
1748 | } else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) { | 1746 | } else if (dflt.vpp1.present & (1 << CISTPL_POWER_VNOM)) { |
1749 | link->conf.Vpp1 = link->conf.Vpp2 = | 1747 | link->conf.Vpp = |
1750 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; | 1748 | dflt.vpp1.param[CISTPL_POWER_VNOM] / 10000; |
1751 | } | 1749 | } |
1752 | 1750 | ||
@@ -1905,11 +1903,10 @@ static void nsp_cs_config(dev_link_t *link) | |||
1905 | #endif | 1903 | #endif |
1906 | 1904 | ||
1907 | /* Finally, report what we've done */ | 1905 | /* Finally, report what we've done */ |
1908 | printk(KERN_INFO "nsp_cs: index 0x%02x: Vcc %d.%d", | 1906 | printk(KERN_INFO "nsp_cs: index 0x%02x: ", |
1909 | link->conf.ConfigIndex, | 1907 | link->conf.ConfigIndex); |
1910 | link->conf.Vcc/10, link->conf.Vcc%10); | 1908 | if (link->conf.Vpp) { |
1911 | if (link->conf.Vpp1) { | 1909 | printk(", Vpp %d.%d", link->conf.Vpp/10, link->conf.Vpp%10); |
1912 | printk(", Vpp %d.%d", link->conf.Vpp1/10, link->conf.Vpp1%10); | ||
1913 | } | 1910 | } |
1914 | if (link->conf.Attributes & CONF_ENABLE_IRQ) { | 1911 | if (link->conf.Attributes & CONF_ENABLE_IRQ) { |
1915 | printk(", irq %d", link->irq.AssignedIRQ); | 1912 | printk(", irq %d", link->irq.AssignedIRQ); |