Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 317694
b: refs/heads/master
c: c332d96
h: refs/heads/master
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jul 6, 2012
1 parent 4ae596a commit d33064d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 21 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 27fa05bc3726430c5b369a3ffbe63d38ac7196d7
refs/heads/master: c332d969e4874c00bcf3d37fc69157558e1ca04b
33 changes: 13 additions & 20 deletions trunk/drivers/staging/comedi/drivers/das08_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
PCMCIA support code for this driver is adapted from the dummy_cs.c
driver of the Linux PCMCIA Card Services package.
The initial developer of the original code is David A. Hinds
<dahinds@users.sourceforge.net>. Portions created by David A. Hinds
are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
*****************************************************************
*/
Expand Down Expand Up @@ -97,17 +104,6 @@ static int das08_cs_attach(struct comedi_device *dev,
return das08_common_attach(dev, iobase);
}

/*======================================================================
The following pcmcia code for the pcm-das08 is adapted from the
dummy_cs.c driver of the Linux PCMCIA Card Services package.
The initial developer of the original code is David A. Hinds
<dahinds@users.sourceforge.net>. Portions created by David A. Hinds
are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
======================================================================*/

static void das08_pcmcia_config(struct pcmcia_device *link);
static void das08_pcmcia_release(struct pcmcia_device *link);
static int das08_pcmcia_suspend(struct pcmcia_device *p_dev);
Expand Down Expand Up @@ -140,7 +136,7 @@ static int das08_pcmcia_attach(struct pcmcia_device *link)
das08_pcmcia_config(link);

return 0;
} /* das08_pcmcia_attach */
}

static void das08_pcmcia_detach(struct pcmcia_device *link)
{
Expand All @@ -153,7 +149,7 @@ static void das08_pcmcia_detach(struct pcmcia_device *link)
/* This points to the parent struct local_info_t struct */
kfree(link->priv);

} /* das08_pcmcia_detach */
}


static int das08_pcmcia_config_loop(struct pcmcia_device *p_dev,
Expand Down Expand Up @@ -191,13 +187,13 @@ static void das08_pcmcia_config(struct pcmcia_device *link)
failed:
das08_pcmcia_release(link);

} /* das08_pcmcia_config */
}

static void das08_pcmcia_release(struct pcmcia_device *link)
{
dev_dbg(&link->dev, "das08_pcmcia_release\n");
pcmcia_disable_device(link);
} /* das08_pcmcia_release */
}

static int das08_pcmcia_suspend(struct pcmcia_device *link)
{
Expand All @@ -206,23 +202,20 @@ static int das08_pcmcia_suspend(struct pcmcia_device *link)
local->stop = 1;

return 0;
} /* das08_pcmcia_suspend */
}

static int das08_pcmcia_resume(struct pcmcia_device *link)
{
struct local_info_t *local = link->priv;

local->stop = 0;
return 0;
} /* das08_pcmcia_resume */

/*====================================================================*/
}

static const struct pcmcia_device_id das08_cs_id_table[] = {
PCMCIA_DEVICE_MANF_CARD(0x01c5, 0x4001),
PCMCIA_DEVICE_NULL
};

MODULE_DEVICE_TABLE(pcmcia, das08_cs_id_table);

static struct pcmcia_driver das08_cs_driver = {
Expand Down

0 comments on commit d33064d

Please sign in to comment.