pcmcia: convert pcmcia_request_configuration to pcmcia_enable_device
[deliverable/linux.git] / sound / pcmcia / pdaudiocf / pdaudiocf.c
index 4df07fce637f09046ba18f0d21dde690f9aca118..2476d5f0a14f6e03204305f4d42b1c2e8b34b530 100644 (file)
@@ -142,7 +142,7 @@ static int snd_pdacf_probe(struct pcmcia_device *link)
        link->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
        link->resource[0]->end = 16;
 
-       link->conf.Attributes = CONF_ENABLE_IRQ | CONF_ENABLE_PULSE_IRQ;
+       link->config_flags = CONF_ENABLE_IRQ | CONF_ENABLE_PULSE_IRQ;
        link->config_index = 1;
        link->config_regs = PRESENT_OPTION;
 
@@ -217,6 +217,7 @@ static int pdacf_config(struct pcmcia_device *link)
 
        snd_printdd(KERN_DEBUG "pdacf_config called\n");
        link->config_index = 0x5;
+       link->config_flags |= CONF_ENABLE_IRQ | CONF_ENABLE_PULSE_IRQ;
 
        ret = pcmcia_request_io(link);
        if (ret)
@@ -226,7 +227,7 @@ static int pdacf_config(struct pcmcia_device *link)
        if (ret)
                goto failed;
 
-       ret = pcmcia_request_configuration(link, &link->conf);
+       ret = pcmcia_enable_device(link);
        if (ret)
                goto failed;
 
This page took 0.029049 seconds and 5 git commands to generate.