Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330596
b: refs/heads/master
c: 6b8c8c4
h: refs/heads/master
v: v3
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Aug 4, 2012
1 parent fee9836 commit 00aae46
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 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: a177c72bf57f70585f08231145b2431b4182b2b4
refs/heads/master: 6b8c8c40894a88035fb29472a25f6864cd2e8197
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/dvb-usb/dvb_usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,9 @@ struct dvb_usb_device {
void *priv;
};

extern int dvb_usbv2_device_init(struct usb_interface *,
extern int dvb_usbv2_probe(struct usb_interface *,
const struct usb_device_id *);
extern void dvb_usbv2_device_exit(struct usb_interface *);
extern void dvb_usbv2_disconnect(struct usb_interface *);

/* the generic read/write method for device control */
extern int dvb_usbv2_generic_rw(struct dvb_usb_device *, u8 *, u16, u8 *, u16,
Expand Down
9 changes: 4 additions & 5 deletions trunk/drivers/media/dvb/dvb-usb/dvb_usb_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ static void dvb_usbv2_init_work(struct work_struct *work)
return;
}

int dvb_usbv2_device_init(struct usb_interface *intf,
int dvb_usbv2_probe(struct usb_interface *intf,
const struct usb_device_id *id)
{
int ret;
Expand Down Expand Up @@ -389,10 +389,9 @@ int dvb_usbv2_device_init(struct usb_interface *intf,
pr_debug("%s: failed=%d\n", __func__, ret);
return ret;
}
EXPORT_SYMBOL(dvb_usbv2_probe);

EXPORT_SYMBOL(dvb_usbv2_device_init);

void dvb_usbv2_device_exit(struct usb_interface *intf)
void dvb_usbv2_disconnect(struct usb_interface *intf)
{
struct dvb_usb_device *d = usb_get_intfdata(intf);
const char *name = "generic DVB-USB module";
Expand All @@ -416,7 +415,7 @@ void dvb_usbv2_device_exit(struct usb_interface *intf)
pr_info("%s: '%s' successfully deinitialized and disconnected\n",
KBUILD_MODNAME, name);
}
EXPORT_SYMBOL(dvb_usbv2_device_exit);
EXPORT_SYMBOL(dvb_usbv2_disconnect);

MODULE_VERSION("1.0");
MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Expand Down

0 comments on commit 00aae46

Please sign in to comment.