Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 3780
b: refs/heads/master
c: e9a07af
h: refs/heads/master
v: v3
  • Loading branch information
Dominik Brodowski authored and Linus Torvalds committed Jun 28, 2005
1 parent 35bba76 commit da0a215
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 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: 11d28a30219671607a235a518f395659599a748e
refs/heads/master: e9a07afd9e7507ac02349b2ff59c579686dcd0fd
20 changes: 8 additions & 12 deletions trunk/sound/pcmcia/vx/vxpocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

/*
please add the following as /etc/pcmcia/vxpocket.conf:
device "snd-vxpocket"
class "audio" module "snd-vxpocket"
card "Digigram VX-POCKET"
manfid 0x01f1, 0x0100
bind "snd-vxpocket"
*/

#include <sound/driver.h>
#include <linux/init.h>
Expand Down Expand Up @@ -140,13 +129,20 @@ static void vxp_detach(dev_link_t *link)
* Module entry points
*/

static struct pcmcia_device_id vxp_ids[] = {
PCMCIA_DEVICE_MANF_CARD(0x01f1, 0x0100),
PCMCIA_DEVICE_NULL
};
MODULE_DEVICE_TABLE(pcmcia, vxp_ids);

static struct pcmcia_driver vxp_cs_driver = {
.owner = THIS_MODULE,
.drv = {
.name = DEV_INFO,
},
.attach = vxp_attach,
.detach = vxp_detach
.detach = vxp_detach,
.id_table = vxp_ids,
};

static int __init init_vxpocket(void)
Expand Down

0 comments on commit da0a215

Please sign in to comment.