Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 317589
b: refs/heads/master
c: c2107ff
h: refs/heads/master
i:
  317587: dc897d4
v: v3
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jun 26, 2012
1 parent f65ee6a commit 3059645
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 37 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: f19d8578fd4c1ed23e951d26f5f56392aaf202a1
refs/heads/master: c2107ff46d58a9db6d8cadcbe18fa631fb4f7cd9
51 changes: 15 additions & 36 deletions trunk/drivers/staging/comedi/drivers/cb_das16_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -629,12 +629,6 @@ struct local_info_t {
struct bus_operations *bus;
};

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

static int das16cs_pcmcia_config_loop(struct pcmcia_device *p_dev,
void *priv_data)
{
Expand All @@ -644,20 +638,24 @@ static int das16cs_pcmcia_config_loop(struct pcmcia_device *p_dev,
return pcmcia_request_io(p_dev);
}

static void das16cs_pcmcia_config(struct pcmcia_device *link)
static int das16cs_pcmcia_attach(struct pcmcia_device *link)
{
struct local_info_t *local;
int ret;

dev_dbg(&link->dev, "das16cs_pcmcia_config\n");
/* Allocate space for private device-specific data */
local = kzalloc(sizeof(struct local_info_t), GFP_KERNEL);
if (!local)
return -ENOMEM;
local->link = link;
link->priv = local;

/* Do we need to allocate an interrupt? */
link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;

ret = pcmcia_loop_config(link, das16cs_pcmcia_config_loop, NULL);
if (ret) {
dev_warn(&link->dev, "no configuration found\n");
if (ret)
goto failed;
}

if (!link->irq)
goto failed;
Expand All @@ -666,40 +664,21 @@ static void das16cs_pcmcia_config(struct pcmcia_device *link)
if (ret)
goto failed;

return;

failed:
das16cs_pcmcia_release(link);
}

static int das16cs_pcmcia_attach(struct pcmcia_device *link)
{
struct local_info_t *local;

dev_dbg(&link->dev, "das16cs_pcmcia_attach()\n");

/* Allocate space for private device-specific data */
local = kzalloc(sizeof(struct local_info_t), GFP_KERNEL);
if (!local)
return -ENOMEM;
local->link = link;
link->priv = local;

cur_dev = link;

das16cs_pcmcia_config(link);

return 0;

failed:
pcmcia_disable_device(link);
return ret;
}

static void das16cs_pcmcia_detach(struct pcmcia_device *link)
{
dev_dbg(&link->dev, "das16cs_pcmcia_detach\n");

((struct local_info_t *)link->priv)->stop = 1;
das16cs_pcmcia_release(link);
pcmcia_disable_device(link);
/* This points to the parent struct local_info_t struct */
kfree(link->priv);
cur_dev = NULL;
}

static int das16cs_pcmcia_suspend(struct pcmcia_device *link)
Expand Down

0 comments on commit 3059645

Please sign in to comment.