2008-12-28 04:33:54 +03:00
/* A driver for the D-Link DSB-R100 USB radio and Gemtek USB Radio 21.
2012-04-27 15:13:26 +04:00
* The device plugs into both the USB and an analog audio input , so this thing
* only deals with initialisation and frequency setting , the
* audio data has to be handled by a sound driver .
*
* Major issue : I can ' t find out where the device reports the signal
* strength , and indeed the windows software appearantly just looks
* at the stereo indicator as well . So , scanning will only find
* stereo stations . Sad , but I can ' t help it .
*
* Also , the windows program sends oodles of messages over to the
* device , and I couldn ' t figure out their meaning . My suspicion
* is that they don ' t have any : - )
*
* You might find some interesting stuff about this module at
* http : //unimut.fsk.uni-heidelberg.de/unimut/demi/dsbr
*
* Fully tested with the Keene USB FM Transmitter and the v4l2 - compliance tool .
*
* Copyright ( c ) 2000 Markus Demleitner < msdemlei @ cl . uni - heidelberg . de >
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
2005-04-17 02:20:36 +04:00
*/
# include <linux/kernel.h>
# include <linux/module.h>
# include <linux/init.h>
# include <linux/slab.h>
# include <linux/input.h>
2006-08-08 22:47:50 +04:00
# include <linux/videodev2.h>
2012-04-27 15:13:26 +04:00
# include <linux/usb.h>
2009-04-04 01:45:17 +04:00
# include <media/v4l2-device.h>
2008-07-20 15:12:02 +04:00
# include <media/v4l2-ioctl.h>
2012-04-27 15:13:26 +04:00
# include <media/v4l2-ctrls.h>
# include <media/v4l2-event.h>
2005-04-17 02:20:36 +04:00
/*
* Version Information
*/
2012-04-27 15:13:26 +04:00
MODULE_AUTHOR ( " Markus Demleitner <msdemlei@tucana.harvard.edu> " ) ;
MODULE_DESCRIPTION ( " D-Link DSB-R100 USB FM radio driver " ) ;
MODULE_LICENSE ( " GPL " ) ;
MODULE_VERSION ( " 1.1.0 " ) ;
2005-04-17 02:20:36 +04:00
# define DSB100_VENDOR 0x04b4
# define DSB100_PRODUCT 0x1002
/* Commands the device appears to understand */
# define DSB100_TUNE 1
# define DSB100_ONOFF 2
# define TB_LEN 16
/* Frequency limits in MHz -- these are European values. For Japanese
devices , that would be 76 and 91. */
# define FREQ_MIN 87.5
# define FREQ_MAX 108.0
# define FREQ_MUL 16000
2011-01-18 02:25:11 +03:00
# define v4l2_dev_to_radio(d) container_of(d, struct dsbr100_device, v4l2_dev)
2005-04-17 02:20:36 +04:00
static int radio_nr = - 1 ;
module_param ( radio_nr , int , 0 ) ;
/* Data for one (physical) device */
2006-08-08 22:47:50 +04:00
struct dsbr100_device {
2005-04-17 02:20:36 +04:00
struct usb_device * usbdev ;
2008-12-28 03:32:49 +03:00
struct video_device videodev ;
2009-04-04 01:45:17 +04:00
struct v4l2_device v4l2_dev ;
2012-04-27 15:13:26 +04:00
struct v4l2_ctrl_handler hdl ;
2009-04-04 01:45:17 +04:00
2007-12-03 12:48:43 +03:00
u8 * transfer_buffer ;
2010-12-20 00:54:08 +03:00
struct mutex v4l2_lock ;
2005-04-17 02:20:36 +04:00
int curfreq ;
2012-04-27 15:13:26 +04:00
bool stereo ;
bool muted ;
2005-04-17 02:20:36 +04:00
} ;
/* Low-level device interface begins here */
2012-04-27 15:13:26 +04:00
/* set a frequency, freq is defined by v4l's TUNER_LOW, i.e. 1/16th kHz */
static int dsbr100_setfreq ( struct dsbr100_device * radio , unsigned freq )
2005-04-17 02:20:36 +04:00
{
2012-04-27 15:13:26 +04:00
unsigned f = ( freq / 16 * 80 ) / 1000 + 856 ;
int retval = 0 ;
if ( ! radio - > muted ) {
retval = usb_control_msg ( radio - > usbdev ,
usb_rcvctrlpipe ( radio - > usbdev , 0 ) ,
DSB100_TUNE ,
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN ,
( f > > 8 ) & 0x00ff , f & 0xff ,
radio - > transfer_buffer , 8 , 300 ) ;
if ( retval > = 0 )
mdelay ( 1 ) ;
2008-12-28 03:32:49 +03:00
}
2012-04-27 15:13:26 +04:00
if ( retval > = 0 ) {
radio - > curfreq = freq ;
return 0 ;
2008-12-28 04:30:29 +03:00
}
dev_err ( & radio - > usbdev - > dev ,
" %s - usb_control_msg returned %i, request %i \n " ,
2012-04-27 15:13:26 +04:00
__func__ , retval , DSB100_TUNE ) ;
2008-12-28 04:40:57 +03:00
return retval ;
2005-04-17 02:20:36 +04:00
}
2012-04-27 15:13:26 +04:00
/* switch on radio */
static int dsbr100_start ( struct dsbr100_device * radio )
2005-04-17 02:20:36 +04:00
{
2012-04-27 15:13:26 +04:00
int retval = usb_control_msg ( radio - > usbdev ,
2008-12-28 04:30:29 +03:00
usb_rcvctrlpipe ( radio - > usbdev , 0 ) ,
DSB100_ONOFF ,
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN ,
2012-04-27 15:13:26 +04:00
0x01 , 0x00 , radio - > transfer_buffer , 8 , 300 ) ;
2008-12-28 04:30:29 +03:00
2012-04-27 15:13:26 +04:00
if ( retval > = 0 )
return dsbr100_setfreq ( radio , radio - > curfreq ) ;
2008-12-28 04:30:29 +03:00
dev_err ( & radio - > usbdev - > dev ,
" %s - usb_control_msg returned %i, request %i \n " ,
2012-04-27 15:13:26 +04:00
__func__ , retval , DSB100_ONOFF ) ;
2008-12-28 04:40:57 +03:00
return retval ;
2008-12-28 04:30:29 +03:00
2005-04-17 02:20:36 +04:00
}
2012-04-27 15:13:26 +04:00
/* switch off radio */
static int dsbr100_stop ( struct dsbr100_device * radio )
2005-04-17 02:20:36 +04:00
{
2012-04-27 15:13:26 +04:00
int retval = usb_control_msg ( radio - > usbdev ,
2008-12-28 04:30:29 +03:00
usb_rcvctrlpipe ( radio - > usbdev , 0 ) ,
2012-04-27 15:13:26 +04:00
DSB100_ONOFF ,
2008-12-28 04:30:29 +03:00
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN ,
2012-04-27 15:13:26 +04:00
0x00 , 0x00 , radio - > transfer_buffer , 8 , 300 ) ;
2008-12-28 04:30:29 +03:00
2012-04-27 15:13:26 +04:00
if ( retval > = 0 )
return 0 ;
2008-12-28 04:30:29 +03:00
dev_err ( & radio - > usbdev - > dev ,
" %s - usb_control_msg returned %i, request %i \n " ,
2012-04-27 15:13:26 +04:00
__func__ , retval , DSB100_ONOFF ) ;
2008-12-28 04:40:57 +03:00
return retval ;
2012-04-27 15:13:26 +04:00
2005-04-17 02:20:36 +04:00
}
/* return the device status. This is, in effect, just whether it
sees a stereo signal or not . Pity . */
2006-08-08 22:47:50 +04:00
static void dsbr100_getstat ( struct dsbr100_device * radio )
2005-04-17 02:20:36 +04:00
{
2012-04-27 15:13:26 +04:00
int retval = usb_control_msg ( radio - > usbdev ,
2008-12-28 04:30:29 +03:00
usb_rcvctrlpipe ( radio - > usbdev , 0 ) ,
2006-03-25 15:19:53 +03:00
USB_REQ_GET_STATUS ,
2005-04-17 02:20:36 +04:00
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN ,
2012-04-27 15:13:26 +04:00
0x00 , 0x24 , radio - > transfer_buffer , 8 , 300 ) ;
2008-12-28 04:30:29 +03:00
if ( retval < 0 ) {
2012-04-27 15:13:26 +04:00
radio - > stereo = false ;
2008-12-28 04:30:29 +03:00
dev_err ( & radio - > usbdev - > dev ,
" %s - usb_control_msg returned %i, request %i \n " ,
__func__ , retval , USB_REQ_GET_STATUS ) ;
} else {
2008-10-20 06:50:27 +04:00
radio - > stereo = ! ( radio - > transfer_buffer [ 0 ] & 0x01 ) ;
2008-12-28 04:30:29 +03:00
}
2005-04-17 02:20:36 +04:00
}
2007-05-07 23:43:01 +04:00
static int vidioc_querycap ( struct file * file , void * priv ,
struct v4l2_capability * v )
{
2009-01-26 02:05:58 +03:00
struct dsbr100_device * radio = video_drvdata ( file ) ;
2007-05-07 23:43:01 +04:00
strlcpy ( v - > driver , " dsbr100 " , sizeof ( v - > driver ) ) ;
strlcpy ( v - > card , " D-Link R-100 USB FM Radio " , sizeof ( v - > card ) ) ;
2009-01-26 02:05:58 +03:00
usb_make_path ( radio - > usbdev , v - > bus_info , sizeof ( v - > bus_info ) ) ;
2012-04-27 15:13:26 +04:00
v - > device_caps = V4L2_CAP_RADIO | V4L2_CAP_TUNER ;
v - > capabilities = v - > device_caps | V4L2_CAP_DEVICE_CAPS ;
2007-05-07 23:43:01 +04:00
return 0 ;
}
2005-04-17 02:20:36 +04:00
2007-05-07 23:43:01 +04:00
static int vidioc_g_tuner ( struct file * file , void * priv ,
struct v4l2_tuner * v )
2005-04-17 02:20:36 +04:00
{
2008-08-23 15:32:09 +04:00
struct dsbr100_device * radio = video_drvdata ( file ) ;
2007-05-07 23:43:01 +04:00
if ( v - > index > 0 )
return - EINVAL ;
dsbr100_getstat ( radio ) ;
strcpy ( v - > name , " FM " ) ;
v - > type = V4L2_TUNER_RADIO ;
2008-10-20 06:50:27 +04:00
v - > rangelow = FREQ_MIN * FREQ_MUL ;
v - > rangehigh = FREQ_MAX * FREQ_MUL ;
2012-04-27 15:13:26 +04:00
v - > rxsubchans = radio - > stereo ? V4L2_TUNER_SUB_STEREO :
V4L2_TUNER_SUB_MONO ;
v - > capability = V4L2_TUNER_CAP_LOW | V4L2_TUNER_CAP_STEREO ;
v - > audmode = V4L2_TUNER_MODE_STEREO ;
v - > signal = radio - > stereo ? 0xffff : 0 ; /* We can't get the signal strength */
2007-05-07 23:43:01 +04:00
return 0 ;
}
2005-04-17 02:20:36 +04:00
2007-05-07 23:43:01 +04:00
static int vidioc_s_tuner ( struct file * file , void * priv ,
2013-03-15 13:10:06 +04:00
const struct v4l2_tuner * v )
2007-05-07 23:43:01 +04:00
{
2011-01-18 02:25:11 +03:00
return v - > index ? - EINVAL : 0 ;
2007-05-07 23:43:01 +04:00
}
2006-08-08 22:47:50 +04:00
2007-05-07 23:43:01 +04:00
static int vidioc_s_frequency ( struct file * file , void * priv ,
2013-03-19 11:09:26 +04:00
const struct v4l2_frequency * f )
2007-05-07 23:43:01 +04:00
{
2008-08-23 15:32:09 +04:00
struct dsbr100_device * radio = video_drvdata ( file ) ;
2005-04-17 02:20:36 +04:00
2012-04-27 15:13:26 +04:00
if ( f - > tuner ! = 0 | | f - > type ! = V4L2_TUNER_RADIO )
return - EINVAL ;
2009-02-08 08:00:14 +03:00
2012-04-27 15:13:26 +04:00
return dsbr100_setfreq ( radio , clamp_t ( unsigned , f - > frequency ,
FREQ_MIN * FREQ_MUL , FREQ_MAX * FREQ_MUL ) ) ;
2007-05-07 23:43:01 +04:00
}
2006-08-08 22:47:50 +04:00
2007-05-07 23:43:01 +04:00
static int vidioc_g_frequency ( struct file * file , void * priv ,
struct v4l2_frequency * f )
{
2008-08-23 15:32:09 +04:00
struct dsbr100_device * radio = video_drvdata ( file ) ;
2006-08-08 22:47:50 +04:00
2012-04-27 15:13:26 +04:00
if ( f - > tuner )
return - EINVAL ;
2007-05-07 23:43:01 +04:00
f - > type = V4L2_TUNER_RADIO ;
f - > frequency = radio - > curfreq ;
return 0 ;
}
2006-08-08 22:47:50 +04:00
2012-04-27 15:13:26 +04:00
static int usb_dsbr100_s_ctrl ( struct v4l2_ctrl * ctrl )
2007-05-07 23:43:01 +04:00
{
2012-04-27 15:13:26 +04:00
struct dsbr100_device * radio =
container_of ( ctrl - > handler , struct dsbr100_device , hdl ) ;
2005-04-17 02:20:36 +04:00
2007-05-07 23:43:01 +04:00
switch ( ctrl - > id ) {
case V4L2_CID_AUDIO_MUTE :
2012-04-27 15:13:26 +04:00
radio - > muted = ctrl - > val ;
return radio - > muted ? dsbr100_stop ( radio ) : dsbr100_start ( radio ) ;
2007-05-07 23:43:01 +04:00
}
return - EINVAL ;
}
2006-08-08 22:47:50 +04:00
2005-04-17 02:20:36 +04:00
2010-12-20 00:54:08 +03:00
/* USB subsystem interface begins here */
/*
* Handle unplugging of the device .
* We call video_unregister_device in any case .
* The last function called in this procedure is
* usb_dsbr100_video_device_release
*/
static void usb_dsbr100_disconnect ( struct usb_interface * intf )
{
struct dsbr100_device * radio = usb_get_intfdata ( intf ) ;
mutex_lock ( & radio - > v4l2_lock ) ;
2012-04-27 15:13:26 +04:00
/*
* Disconnect is also called on unload , and in that case we need to
* mute the device . This call will silently fail if it is called
* after a physical disconnect .
*/
usb_control_msg ( radio - > usbdev ,
usb_rcvctrlpipe ( radio - > usbdev , 0 ) ,
DSB100_ONOFF ,
USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN ,
0x00 , 0x00 , radio - > transfer_buffer , 8 , 300 ) ;
2011-01-18 02:25:11 +03:00
usb_set_intfdata ( intf , NULL ) ;
2010-12-20 00:54:08 +03:00
video_unregister_device ( & radio - > videodev ) ;
v4l2_device_disconnect ( & radio - > v4l2_dev ) ;
2011-01-18 02:25:11 +03:00
mutex_unlock ( & radio - > v4l2_lock ) ;
v4l2_device_put ( & radio - > v4l2_dev ) ;
2010-12-20 00:54:08 +03:00
}
2008-11-08 06:40:46 +03:00
/* Suspend device - stop device. */
static int usb_dsbr100_suspend ( struct usb_interface * intf , pm_message_t message )
{
struct dsbr100_device * radio = usb_get_intfdata ( intf ) ;
2010-12-20 00:54:08 +03:00
mutex_lock ( & radio - > v4l2_lock ) ;
2012-04-27 15:13:26 +04:00
if ( ! radio - > muted & & dsbr100_stop ( radio ) < 0 )
dev_warn ( & intf - > dev , " dsbr100_stop failed \n " ) ;
2010-12-20 00:54:08 +03:00
mutex_unlock ( & radio - > v4l2_lock ) ;
2008-11-08 06:40:46 +03:00
dev_info ( & intf - > dev , " going into suspend.. \n " ) ;
return 0 ;
}
/* Resume device - start device. */
static int usb_dsbr100_resume ( struct usb_interface * intf )
{
struct dsbr100_device * radio = usb_get_intfdata ( intf ) ;
2010-12-20 00:54:08 +03:00
mutex_lock ( & radio - > v4l2_lock ) ;
2012-04-27 15:13:26 +04:00
if ( ! radio - > muted & & dsbr100_start ( radio ) < 0 )
dev_warn ( & intf - > dev , " dsbr100_start failed \n " ) ;
2010-12-20 00:54:08 +03:00
mutex_unlock ( & radio - > v4l2_lock ) ;
2008-11-08 06:40:46 +03:00
dev_info ( & intf - > dev , " coming out of suspend.. \n " ) ;
return 0 ;
}
2008-12-28 04:33:54 +03:00
/* free data structures */
2011-01-18 02:25:11 +03:00
static void usb_dsbr100_release ( struct v4l2_device * v4l2_dev )
2008-12-28 03:32:49 +03:00
{
2011-01-18 02:25:11 +03:00
struct dsbr100_device * radio = v4l2_dev_to_radio ( v4l2_dev ) ;
2008-12-28 03:32:49 +03:00
2012-04-27 15:13:26 +04:00
v4l2_ctrl_handler_free ( & radio - > hdl ) ;
2009-04-04 01:45:17 +04:00
v4l2_device_unregister ( & radio - > v4l2_dev ) ;
2008-12-28 03:32:49 +03:00
kfree ( radio - > transfer_buffer ) ;
kfree ( radio ) ;
}
2012-04-27 15:13:26 +04:00
static const struct v4l2_ctrl_ops usb_dsbr100_ctrl_ops = {
. s_ctrl = usb_dsbr100_s_ctrl ,
} ;
2007-05-07 23:43:01 +04:00
/* File system interface */
2008-12-30 12:58:20 +03:00
static const struct v4l2_file_operations usb_dsbr100_fops = {
2007-05-07 23:43:01 +04:00
. owner = THIS_MODULE ,
2010-12-20 00:54:08 +03:00
. unlocked_ioctl = video_ioctl2 ,
2012-04-27 15:13:26 +04:00
. open = v4l2_fh_open ,
. release = v4l2_fh_release ,
. poll = v4l2_ctrl_poll ,
2007-05-07 23:43:01 +04:00
} ;
2008-07-21 09:57:38 +04:00
static const struct v4l2_ioctl_ops usb_dsbr100_ioctl_ops = {
2007-05-07 23:43:01 +04:00
. vidioc_querycap = vidioc_querycap ,
. vidioc_g_tuner = vidioc_g_tuner ,
. vidioc_s_tuner = vidioc_s_tuner ,
. vidioc_g_frequency = vidioc_g_frequency ,
. vidioc_s_frequency = vidioc_s_frequency ,
2012-04-27 15:13:26 +04:00
. vidioc_log_status = v4l2_ctrl_log_status ,
. vidioc_subscribe_event = v4l2_ctrl_subscribe_event ,
. vidioc_unsubscribe_event = v4l2_event_unsubscribe ,
2007-05-07 23:43:01 +04:00
} ;
2008-12-28 04:33:54 +03:00
/* check if the device is present and register with v4l and usb if it is */
2007-05-07 23:43:01 +04:00
static int usb_dsbr100_probe ( struct usb_interface * intf ,
const struct usb_device_id * id )
{
struct dsbr100_device * radio ;
2009-04-04 01:45:17 +04:00
struct v4l2_device * v4l2_dev ;
2008-12-28 04:30:29 +03:00
int retval ;
2007-05-07 23:43:01 +04:00
2009-04-04 01:45:17 +04:00
radio = kzalloc ( sizeof ( struct dsbr100_device ) , GFP_KERNEL ) ;
2008-10-20 06:50:27 +04:00
if ( ! radio )
2007-05-07 23:43:01 +04:00
return - ENOMEM ;
2008-10-20 06:50:27 +04:00
radio - > transfer_buffer = kmalloc ( TB_LEN , GFP_KERNEL ) ;
if ( ! ( radio - > transfer_buffer ) ) {
2007-12-03 12:48:43 +03:00
kfree ( radio ) ;
return - ENOMEM ;
}
2008-10-20 06:50:27 +04:00
2009-04-04 01:45:17 +04:00
v4l2_dev = & radio - > v4l2_dev ;
2011-01-18 02:25:11 +03:00
v4l2_dev - > release = usb_dsbr100_release ;
2009-04-04 01:45:17 +04:00
retval = v4l2_device_register ( & intf - > dev , v4l2_dev ) ;
if ( retval < 0 ) {
v4l2_err ( v4l2_dev , " couldn't register v4l2_device \n " ) ;
2012-04-27 15:13:26 +04:00
goto err_reg_dev ;
2009-04-04 01:45:17 +04:00
}
2012-04-27 15:13:26 +04:00
v4l2_ctrl_handler_init ( & radio - > hdl , 1 ) ;
v4l2_ctrl_new_std ( & radio - > hdl , & usb_dsbr100_ctrl_ops ,
V4L2_CID_AUDIO_MUTE , 0 , 1 , 1 , 1 ) ;
if ( radio - > hdl . error ) {
retval = radio - > hdl . error ;
v4l2_err ( v4l2_dev , " couldn't register control \n " ) ;
goto err_reg_ctrl ;
}
2010-12-20 00:54:08 +03:00
mutex_init ( & radio - > v4l2_lock ) ;
2009-04-04 01:45:17 +04:00
strlcpy ( radio - > videodev . name , v4l2_dev - > name , sizeof ( radio - > videodev . name ) ) ;
radio - > videodev . v4l2_dev = v4l2_dev ;
radio - > videodev . fops = & usb_dsbr100_fops ;
radio - > videodev . ioctl_ops = & usb_dsbr100_ioctl_ops ;
2011-01-18 02:25:11 +03:00
radio - > videodev . release = video_device_release_empty ;
2010-12-20 00:54:08 +03:00
radio - > videodev . lock = & radio - > v4l2_lock ;
2012-04-27 15:13:26 +04:00
radio - > videodev . ctrl_handler = & radio - > hdl ;
2008-12-28 03:32:49 +03:00
2007-05-07 23:43:01 +04:00
radio - > usbdev = interface_to_usbdev ( intf ) ;
2008-10-20 06:50:27 +04:00
radio - > curfreq = FREQ_MIN * FREQ_MUL ;
2012-04-27 15:13:26 +04:00
radio - > muted = true ;
2009-04-04 01:45:17 +04:00
2008-12-28 03:32:49 +03:00
video_set_drvdata ( & radio - > videodev , radio ) ;
2012-04-27 15:13:26 +04:00
usb_set_intfdata ( intf , radio ) ;
2009-04-04 01:45:17 +04:00
2008-12-28 04:30:29 +03:00
retval = video_register_device ( & radio - > videodev , VFL_TYPE_RADIO , radio_nr ) ;
2012-04-27 15:13:26 +04:00
if ( retval = = 0 )
return 0 ;
v4l2_err ( v4l2_dev , " couldn't register video device \n " ) ;
err_reg_ctrl :
v4l2_ctrl_handler_free ( & radio - > hdl ) ;
v4l2_device_unregister ( v4l2_dev ) ;
err_reg_dev :
kfree ( radio - > transfer_buffer ) ;
kfree ( radio ) ;
return retval ;
2007-05-07 23:43:01 +04:00
}
2017-08-13 11:54:45 +03:00
static const struct usb_device_id usb_dsbr100_device_table [ ] = {
2012-04-27 15:13:26 +04:00
{ USB_DEVICE ( DSB100_VENDOR , DSB100_PRODUCT ) } ,
{ } /* Terminating entry */
} ;
2005-04-17 02:20:36 +04:00
2012-04-27 15:13:26 +04:00
MODULE_DEVICE_TABLE ( usb , usb_dsbr100_device_table ) ;
/* USB subsystem interface */
static struct usb_driver usb_dsbr100_driver = {
. name = " dsbr100 " ,
. probe = usb_dsbr100_probe ,
. disconnect = usb_dsbr100_disconnect ,
. id_table = usb_dsbr100_device_table ,
. suspend = usb_dsbr100_suspend ,
. resume = usb_dsbr100_resume ,
. reset_resume = usb_dsbr100_resume ,
} ;
module_usb_driver ( usb_dsbr100_driver ) ;