@@ -476,8 +476,8 @@ int pcmcia_release_configuration(struct pcmcia_device *p_dev)
476
476
config_t * c = p_dev -> function_config ;
477
477
int i ;
478
478
479
- if (p_dev -> state & CLIENT_CONFIG_LOCKED ) {
480
- p_dev -> state &= ~CLIENT_CONFIG_LOCKED ;
479
+ if (p_dev -> p_state & CLIENT_CONFIG_LOCKED ) {
480
+ p_dev -> p_state &= ~CLIENT_CONFIG_LOCKED ;
481
481
if (-- (s -> lock_count ) == 0 ) {
482
482
s -> socket .flags = SS_OUTPUT_ENA ; /* Is this correct? */
483
483
s -> socket .Vpp = 0 ;
@@ -516,10 +516,10 @@ int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req)
516
516
struct pcmcia_socket * s = p_dev -> socket ;
517
517
config_t * c = p_dev -> function_config ;
518
518
519
- if (!(p_dev -> state & CLIENT_IO_REQ ))
519
+ if (!(p_dev -> p_state & CLIENT_IO_REQ ))
520
520
return CS_BAD_HANDLE ;
521
521
522
- p_dev -> state &= ~CLIENT_IO_REQ ;
522
+ p_dev -> p_state &= ~CLIENT_IO_REQ ;
523
523
524
524
if ((c -> io .BasePort1 != req -> BasePort1 ) ||
525
525
(c -> io .NumPorts1 != req -> NumPorts1 ) ||
@@ -542,9 +542,9 @@ int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req)
542
542
struct pcmcia_socket * s = p_dev -> socket ;
543
543
config_t * c = p_dev -> function_config ;
544
544
545
- if (!(p_dev -> state & CLIENT_IRQ_REQ ))
545
+ if (!(p_dev -> p_state & CLIENT_IRQ_REQ ))
546
546
return CS_BAD_HANDLE ;
547
- p_dev -> state &= ~CLIENT_IRQ_REQ ;
547
+ p_dev -> p_state &= ~CLIENT_IRQ_REQ ;
548
548
549
549
if (c -> state & CONFIG_LOCKED )
550
550
return CS_CONFIGURATION_LOCKED ;
@@ -576,7 +576,7 @@ int pcmcia_release_window(window_handle_t win)
576
576
if ((win == NULL ) || (win -> magic != WINDOW_MAGIC ))
577
577
return CS_BAD_HANDLE ;
578
578
s = win -> sock ;
579
- if (!(win -> handle -> state & CLIENT_WIN_REQ (win -> index )))
579
+ if (!(win -> handle -> p_state & CLIENT_WIN_REQ (win -> index )))
580
580
return CS_BAD_HANDLE ;
581
581
582
582
/* Shut down memory window */
@@ -590,7 +590,7 @@ int pcmcia_release_window(window_handle_t win)
590
590
kfree (win -> ctl .res );
591
591
win -> ctl .res = NULL ;
592
592
}
593
- win -> handle -> state &= ~CLIENT_WIN_REQ (win -> index );
593
+ win -> handle -> p_state &= ~CLIENT_WIN_REQ (win -> index );
594
594
595
595
win -> magic = 0 ;
596
596
@@ -708,7 +708,7 @@ int pcmcia_request_configuration(struct pcmcia_device *p_dev,
708
708
}
709
709
710
710
c -> state |= CONFIG_LOCKED ;
711
- p_dev -> state |= CLIENT_CONFIG_LOCKED ;
711
+ p_dev -> p_state |= CLIENT_CONFIG_LOCKED ;
712
712
return CS_SUCCESS ;
713
713
} /* pcmcia_request_configuration */
714
714
EXPORT_SYMBOL (pcmcia_request_configuration );
@@ -754,7 +754,7 @@ int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req)
754
754
755
755
c -> io = * req ;
756
756
c -> state |= CONFIG_IO_REQ ;
757
- p_dev -> state |= CLIENT_IO_REQ ;
757
+ p_dev -> p_state |= CLIENT_IO_REQ ;
758
758
return CS_SUCCESS ;
759
759
} /* pcmcia_request_io */
760
760
EXPORT_SYMBOL (pcmcia_request_io );
@@ -850,7 +850,7 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req)
850
850
s -> irq .Config ++ ;
851
851
852
852
c -> state |= CONFIG_IRQ_REQ ;
853
- p_dev -> state |= CLIENT_IRQ_REQ ;
853
+ p_dev -> p_state |= CLIENT_IRQ_REQ ;
854
854
855
855
#ifdef CONFIG_PCMCIA_PROBE
856
856
pcmcia_used_irq [irq ]++ ;
@@ -910,7 +910,7 @@ int pcmcia_request_window(struct pcmcia_device **p_dev, win_req_t *req, window_h
910
910
if (!win -> ctl .res )
911
911
return CS_IN_USE ;
912
912
}
913
- (* p_dev )-> state |= CLIENT_WIN_REQ (w );
913
+ (* p_dev )-> p_state |= CLIENT_WIN_REQ (w );
914
914
915
915
/* Configure the socket controller */
916
916
win -> ctl .map = w + 1 ;
0 commit comments