3 functions for manipulating drivers
5 COMEDI - Linux Control and Measurement Device Interface
6 Copyright (C) 1997-2000 David A. Schleef <ds@schleef.org>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #define __NO_VERSION__
27 #include "comedi_fops.h"
28 #include <linux/device.h>
29 #include <linux/module.h>
30 #include <linux/pci.h>
31 #include <linux/usb.h>
32 #include <linux/errno.h>
33 #include <linux/kernel.h>
34 #include <linux/sched.h>
35 #include <linux/fcntl.h>
36 #include <linux/delay.h>
37 #include <linux/ioport.h>
39 #include <linux/slab.h>
40 #include "comedidev.h"
42 #include <linux/highmem.h> /* for SuSE brokenness */
43 #include <linux/vmalloc.h>
44 #include <linux/cdev.h>
45 #include <linux/dma-mapping.h>
48 #include <asm/system.h>
50 static int postconfig(struct comedi_device
*dev
);
51 static int insn_rw_emulate_bits(struct comedi_device
*dev
,
52 struct comedi_subdevice
*s
,
53 struct comedi_insn
*insn
, unsigned int *data
);
54 static void *comedi_recognize(struct comedi_driver
*driv
, const char *name
);
55 static void comedi_report_boards(struct comedi_driver
*driv
);
56 static int poll_invalid(struct comedi_device
*dev
, struct comedi_subdevice
*s
);
57 int comedi_buf_alloc(struct comedi_device
*dev
, struct comedi_subdevice
*s
,
58 unsigned long new_size
);
60 struct comedi_driver
*comedi_drivers
;
62 int comedi_modprobe(int minor
)
67 static void cleanup_device(struct comedi_device
*dev
)
70 struct comedi_subdevice
*s
;
72 if (dev
->subdevices
) {
73 for (i
= 0; i
< dev
->n_subdevices
; i
++) {
74 s
= dev
->subdevices
+ i
;
75 comedi_free_subdevice_minor(s
);
77 comedi_buf_alloc(dev
, s
, 0);
81 kfree(dev
->subdevices
);
82 dev
->subdevices
= NULL
;
83 dev
->n_subdevices
= 0;
88 dev
->board_name
= NULL
;
89 dev
->board_ptr
= NULL
;
92 dev
->read_subdev
= NULL
;
93 dev
->write_subdev
= NULL
;
96 comedi_set_hw_dev(dev
, NULL
);
99 static void __comedi_device_detach(struct comedi_device
*dev
)
103 dev
->driver
->detach(dev
);
105 printk("BUG: dev->driver=NULL in comedi_device_detach()\n");
110 void comedi_device_detach(struct comedi_device
*dev
)
114 __comedi_device_detach(dev
);
117 int comedi_device_attach(struct comedi_device
*dev
, struct comedi_devconfig
*it
)
119 struct comedi_driver
*driv
;
125 for (driv
= comedi_drivers
; driv
; driv
= driv
->next
) {
126 if (!try_module_get(driv
->module
)) {
128 ("comedi: failed to increment module count, skipping\n");
131 if (driv
->num_names
) {
132 dev
->board_ptr
= comedi_recognize(driv
, it
->board_name
);
133 if (dev
->board_ptr
== NULL
) {
134 module_put(driv
->module
);
138 if (strcmp(driv
->driver_name
, it
->board_name
)) {
139 module_put(driv
->module
);
143 /* initialize dev->driver here so comedi_error() can be called from attach */
145 ret
= driv
->attach(dev
, it
);
147 module_put(dev
->driver
->module
);
148 __comedi_device_detach(dev
);
154 /* recognize has failed if we get here */
155 /* report valid board names before returning error */
156 for (driv
= comedi_drivers
; driv
; driv
= driv
->next
) {
157 if (!try_module_get(driv
->module
)) {
158 printk("comedi: failed to increment module count\n");
161 comedi_report_boards(driv
);
162 module_put(driv
->module
);
167 /* do a little post-config cleanup */
168 ret
= postconfig(dev
);
169 module_put(dev
->driver
->module
);
171 __comedi_device_detach(dev
);
175 if (!dev
->board_name
) {
176 printk("BUG: dev->board_name=<%p>\n", dev
->board_name
);
177 dev
->board_name
= "BUG";
185 int comedi_driver_register(struct comedi_driver
*driver
)
187 driver
->next
= comedi_drivers
;
188 comedi_drivers
= driver
;
193 int comedi_driver_unregister(struct comedi_driver
*driver
)
195 struct comedi_driver
*prev
;
198 /* check for devices using this driver */
199 for (i
= 0; i
< COMEDI_NUM_BOARD_MINORS
; i
++) {
200 struct comedi_device_file_info
*dev_file_info
=
201 comedi_get_device_file_info(i
);
202 struct comedi_device
*dev
;
204 if (dev_file_info
== NULL
)
206 dev
= dev_file_info
->device
;
208 mutex_lock(&dev
->mutex
);
209 if (dev
->attached
&& dev
->driver
== driver
) {
212 ("BUG! detaching device with use_count=%d\n",
214 comedi_device_detach(dev
);
216 mutex_unlock(&dev
->mutex
);
219 if (comedi_drivers
== driver
) {
220 comedi_drivers
= driver
->next
;
224 for (prev
= comedi_drivers
; prev
->next
; prev
= prev
->next
) {
225 if (prev
->next
== driver
) {
226 prev
->next
= driver
->next
;
233 static int postconfig(struct comedi_device
*dev
)
236 struct comedi_subdevice
*s
;
237 struct comedi_async
*async
= NULL
;
240 for (i
= 0; i
< dev
->n_subdevices
; i
++) {
241 s
= dev
->subdevices
+ i
;
243 if (s
->type
== COMEDI_SUBD_UNUSED
)
246 if (s
->len_chanlist
== 0)
250 BUG_ON((s
->subdev_flags
& (SDF_CMD_READ
|
251 SDF_CMD_WRITE
)) == 0);
252 BUG_ON(!s
->do_cmdtest
);
255 kzalloc(sizeof(struct comedi_async
), GFP_KERNEL
);
257 printk("failed to allocate async struct\n");
260 init_waitqueue_head(&async
->wait_head
);
261 async
->subdevice
= s
;
264 #define DEFAULT_BUF_MAXSIZE (64*1024)
265 #define DEFAULT_BUF_SIZE (64*1024)
267 async
->max_bufsize
= DEFAULT_BUF_MAXSIZE
;
269 async
->prealloc_buf
= NULL
;
270 async
->prealloc_bufsz
= 0;
271 if (comedi_buf_alloc(dev
, s
, DEFAULT_BUF_SIZE
) < 0) {
272 printk("Buffer allocation failed\n");
276 ret
= s
->buf_change(dev
, s
, DEFAULT_BUF_SIZE
);
280 comedi_alloc_subdevice_minor(dev
, s
);
283 if (!s
->range_table
&& !s
->range_table_list
)
284 s
->range_table
= &range_unknown
;
286 if (!s
->insn_read
&& s
->insn_bits
)
287 s
->insn_read
= insn_rw_emulate_bits
;
288 if (!s
->insn_write
&& s
->insn_bits
)
289 s
->insn_write
= insn_rw_emulate_bits
;
292 s
->insn_read
= insn_inval
;
294 s
->insn_write
= insn_inval
;
296 s
->insn_bits
= insn_inval
;
298 s
->insn_config
= insn_inval
;
301 s
->poll
= poll_invalid
;
307 /* generic recognize function for drivers that register their supported board names */
308 void *comedi_recognize(struct comedi_driver
*driv
, const char *name
)
311 const char *const *name_ptr
= driv
->board_name
;
312 for (i
= 0; i
< driv
->num_names
; i
++) {
313 if (strcmp(*name_ptr
, name
) == 0)
314 return (void *)name_ptr
;
316 (const char *const *)((const char *)name_ptr
+
323 void comedi_report_boards(struct comedi_driver
*driv
)
326 const char *const *name_ptr
;
328 printk("comedi: valid board names for %s driver are:\n",
331 name_ptr
= driv
->board_name
;
332 for (i
= 0; i
< driv
->num_names
; i
++) {
333 printk(" %s\n", *name_ptr
);
334 name_ptr
= (const char **)((char *)name_ptr
+ driv
->offset
);
337 if (driv
->num_names
== 0)
338 printk(" %s\n", driv
->driver_name
);
341 static int poll_invalid(struct comedi_device
*dev
, struct comedi_subdevice
*s
)
346 int insn_inval(struct comedi_device
*dev
, struct comedi_subdevice
*s
,
347 struct comedi_insn
*insn
, unsigned int *data
)
352 static int insn_rw_emulate_bits(struct comedi_device
*dev
,
353 struct comedi_subdevice
*s
,
354 struct comedi_insn
*insn
, unsigned int *data
)
356 struct comedi_insn new_insn
;
358 static const unsigned channels_per_bitfield
= 32;
360 unsigned chan
= CR_CHAN(insn
->chanspec
);
361 const unsigned base_bitfield_channel
=
362 (chan
< channels_per_bitfield
) ? 0 : chan
;
363 unsigned int new_data
[2];
364 memset(new_data
, 0, sizeof(new_data
));
365 memset(&new_insn
, 0, sizeof(new_insn
));
366 new_insn
.insn
= INSN_BITS
;
367 new_insn
.chanspec
= base_bitfield_channel
;
369 new_insn
.data
= new_data
;
370 new_insn
.subdev
= insn
->subdev
;
372 if (insn
->insn
== INSN_WRITE
) {
373 if (!(s
->subdev_flags
& SDF_WRITABLE
))
375 new_data
[0] = 1 << (chan
- base_bitfield_channel
); /* mask */
376 new_data
[1] = data
[0] ? (1 << (chan
- base_bitfield_channel
)) : 0; /* bits */
379 ret
= s
->insn_bits(dev
, s
, &new_insn
, new_data
);
383 if (insn
->insn
== INSN_READ
) {
384 data
[0] = (new_data
[1] >> (chan
- base_bitfield_channel
)) & 1;
390 static inline unsigned long uvirt_to_kva(pgd_t
*pgd
, unsigned long adr
)
392 unsigned long ret
= 0UL;
397 if (!pgd_none(*pgd
)) {
398 pud
= pud_offset(pgd
, adr
);
399 pmd
= pmd_offset(pud
, adr
);
400 if (!pmd_none(*pmd
)) {
401 ptep
= pte_offset_kernel(pmd
, adr
);
403 if (pte_present(pte
)) {
404 ret
= (unsigned long)
405 page_address(pte_page(pte
));
406 ret
|= (adr
& (PAGE_SIZE
- 1));
413 static inline unsigned long kvirt_to_kva(unsigned long adr
)
415 unsigned long va
, kva
;
418 kva
= uvirt_to_kva(pgd_offset_k(va
), va
);
423 int comedi_buf_alloc(struct comedi_device
*dev
, struct comedi_subdevice
*s
,
424 unsigned long new_size
)
426 struct comedi_async
*async
= s
->async
;
428 /* Round up new_size to multiple of PAGE_SIZE */
429 new_size
= (new_size
+ PAGE_SIZE
- 1) & PAGE_MASK
;
431 /* if no change is required, do nothing */
432 if (async
->prealloc_buf
&& async
->prealloc_bufsz
== new_size
) {
435 /* deallocate old buffer */
436 if (async
->prealloc_buf
) {
437 vunmap(async
->prealloc_buf
);
438 async
->prealloc_buf
= NULL
;
439 async
->prealloc_bufsz
= 0;
441 if (async
->buf_page_list
) {
443 for (i
= 0; i
< async
->n_buf_pages
; ++i
) {
444 if (async
->buf_page_list
[i
].virt_addr
) {
445 mem_map_unreserve(virt_to_page
446 (async
->buf_page_list
[i
].
448 if (s
->async_dma_dir
!= DMA_NONE
) {
449 dma_free_coherent(dev
->hw_dev
,
458 free_page((unsigned long)
459 async
->buf_page_list
[i
].
464 vfree(async
->buf_page_list
);
465 async
->buf_page_list
= NULL
;
466 async
->n_buf_pages
= 0;
468 /* allocate new buffer */
471 unsigned n_pages
= new_size
>> PAGE_SHIFT
;
472 struct page
**pages
= NULL
;
474 async
->buf_page_list
=
475 vmalloc(sizeof(struct comedi_buf_page
) * n_pages
);
476 if (async
->buf_page_list
) {
477 memset(async
->buf_page_list
, 0,
478 sizeof(struct comedi_buf_page
) * n_pages
);
479 pages
= vmalloc(sizeof(struct page
*) * n_pages
);
482 for (i
= 0; i
< n_pages
; i
++) {
483 if (s
->async_dma_dir
!= DMA_NONE
) {
484 async
->buf_page_list
[i
].virt_addr
=
485 dma_alloc_coherent(dev
->hw_dev
,
493 async
->buf_page_list
[i
].virt_addr
=
495 get_zeroed_page(GFP_KERNEL
);
497 if (async
->buf_page_list
[i
].virt_addr
== NULL
) {
500 mem_map_reserve(virt_to_page
501 (async
->buf_page_list
[i
].
505 buf_page_list
[i
].virt_addr
);
509 async
->prealloc_buf
=
510 vmap(pages
, n_pages
, VM_MAP
, PAGE_KERNEL_NOCACHE
);
514 if (async
->prealloc_buf
== NULL
) {
515 /* Some allocation failed above. */
516 if (async
->buf_page_list
) {
517 for (i
= 0; i
< n_pages
; i
++) {
518 if (async
->buf_page_list
[i
].virt_addr
==
522 mem_map_unreserve(virt_to_page
523 (async
->buf_page_list
525 if (s
->async_dma_dir
!= DMA_NONE
) {
526 dma_free_coherent(dev
->hw_dev
,
535 free_page((unsigned long)
540 vfree(async
->buf_page_list
);
541 async
->buf_page_list
= NULL
;
545 async
->n_buf_pages
= n_pages
;
547 async
->prealloc_bufsz
= new_size
;
552 /* munging is applied to data by core as it passes between user
553 * and kernel space */
554 unsigned int comedi_buf_munge(struct comedi_async
*async
,
555 unsigned int num_bytes
)
557 struct comedi_subdevice
*s
= async
->subdevice
;
558 unsigned int count
= 0;
559 const unsigned num_sample_bytes
= bytes_per_sample(s
);
561 if (s
->munge
== NULL
|| (async
->cmd
.flags
& CMDF_RAWDATA
)) {
562 async
->munge_count
+= num_bytes
;
563 BUG_ON((int)(async
->munge_count
- async
->buf_write_count
) > 0);
566 /* don't munge partial samples */
567 num_bytes
-= num_bytes
% num_sample_bytes
;
568 while (count
< num_bytes
) {
571 block_size
= num_bytes
- count
;
572 if (block_size
< 0) {
573 printk("%s: %s: bug! block_size is negative\n",
577 if ((int)(async
->munge_ptr
+ block_size
-
578 async
->prealloc_bufsz
) > 0)
579 block_size
= async
->prealloc_bufsz
- async
->munge_ptr
;
581 s
->munge(s
->device
, s
, async
->prealloc_buf
+ async
->munge_ptr
,
582 block_size
, async
->munge_chan
);
584 smp_wmb(); /* barrier insures data is munged in buffer before munge_count is incremented */
586 async
->munge_chan
+= block_size
/ num_sample_bytes
;
587 async
->munge_chan
%= async
->cmd
.chanlist_len
;
588 async
->munge_count
+= block_size
;
589 async
->munge_ptr
+= block_size
;
590 async
->munge_ptr
%= async
->prealloc_bufsz
;
593 BUG_ON((int)(async
->munge_count
- async
->buf_write_count
) > 0);
597 unsigned int comedi_buf_write_n_available(struct comedi_async
*async
)
599 unsigned int free_end
;
605 free_end
= async
->buf_read_count
+ async
->prealloc_bufsz
;
606 nbytes
= free_end
- async
->buf_write_alloc_count
;
607 nbytes
-= nbytes
% bytes_per_sample(async
->subdevice
);
608 /* barrier insures the read of buf_read_count in this
609 query occurs before any following writes to the buffer which
610 might be based on the return value from this query.
616 /* allocates chunk for the writer from free buffer space */
617 unsigned int comedi_buf_write_alloc(struct comedi_async
*async
,
620 unsigned int free_end
= async
->buf_read_count
+ async
->prealloc_bufsz
;
622 if ((int)(async
->buf_write_alloc_count
+ nbytes
- free_end
) > 0) {
623 nbytes
= free_end
- async
->buf_write_alloc_count
;
625 async
->buf_write_alloc_count
+= nbytes
;
626 /* barrier insures the read of buf_read_count above occurs before
627 we write data to the write-alloc'ed buffer space */
632 /* allocates nothing unless it can completely fulfill the request */
633 unsigned int comedi_buf_write_alloc_strict(struct comedi_async
*async
,
636 unsigned int free_end
= async
->buf_read_count
+ async
->prealloc_bufsz
;
638 if ((int)(async
->buf_write_alloc_count
+ nbytes
- free_end
) > 0) {
641 async
->buf_write_alloc_count
+= nbytes
;
642 /* barrier insures the read of buf_read_count above occurs before
643 we write data to the write-alloc'ed buffer space */
648 /* transfers a chunk from writer to filled buffer space */
649 unsigned comedi_buf_write_free(struct comedi_async
*async
, unsigned int nbytes
)
651 if ((int)(async
->buf_write_count
+ nbytes
-
652 async
->buf_write_alloc_count
) > 0) {
654 ("comedi: attempted to write-free more bytes than have been write-allocated.\n");
655 nbytes
= async
->buf_write_alloc_count
- async
->buf_write_count
;
657 async
->buf_write_count
+= nbytes
;
658 async
->buf_write_ptr
+= nbytes
;
659 comedi_buf_munge(async
, async
->buf_write_count
- async
->munge_count
);
660 if (async
->buf_write_ptr
>= async
->prealloc_bufsz
) {
661 async
->buf_write_ptr
%= async
->prealloc_bufsz
;
666 /* allocates a chunk for the reader from filled (and munged) buffer space */
667 unsigned comedi_buf_read_alloc(struct comedi_async
*async
, unsigned nbytes
)
669 if ((int)(async
->buf_read_alloc_count
+ nbytes
- async
->munge_count
) >
671 nbytes
= async
->munge_count
- async
->buf_read_alloc_count
;
673 async
->buf_read_alloc_count
+= nbytes
;
674 /* barrier insures read of munge_count occurs before we actually read
675 data out of buffer */
680 /* transfers control of a chunk from reader to free buffer space */
681 unsigned comedi_buf_read_free(struct comedi_async
*async
, unsigned int nbytes
)
683 /* barrier insures data has been read out of buffer before read count is incremented */
685 if ((int)(async
->buf_read_count
+ nbytes
-
686 async
->buf_read_alloc_count
) > 0) {
688 ("comedi: attempted to read-free more bytes than have been read-allocated.\n");
689 nbytes
= async
->buf_read_alloc_count
- async
->buf_read_count
;
691 async
->buf_read_count
+= nbytes
;
692 async
->buf_read_ptr
+= nbytes
;
693 async
->buf_read_ptr
%= async
->prealloc_bufsz
;
697 void comedi_buf_memcpy_to(struct comedi_async
*async
, unsigned int offset
,
698 const void *data
, unsigned int num_bytes
)
700 unsigned int write_ptr
= async
->buf_write_ptr
+ offset
;
702 if (write_ptr
>= async
->prealloc_bufsz
)
703 write_ptr
%= async
->prealloc_bufsz
;
706 unsigned int block_size
;
708 if (write_ptr
+ num_bytes
> async
->prealloc_bufsz
)
709 block_size
= async
->prealloc_bufsz
- write_ptr
;
711 block_size
= num_bytes
;
713 memcpy(async
->prealloc_buf
+ write_ptr
, data
, block_size
);
716 num_bytes
-= block_size
;
722 void comedi_buf_memcpy_from(struct comedi_async
*async
, unsigned int offset
,
723 void *dest
, unsigned int nbytes
)
726 unsigned int read_ptr
= async
->buf_read_ptr
+ offset
;
728 if (read_ptr
>= async
->prealloc_bufsz
)
729 read_ptr
%= async
->prealloc_bufsz
;
732 unsigned int block_size
;
734 src
= async
->prealloc_buf
+ read_ptr
;
736 if (nbytes
>= async
->prealloc_bufsz
- read_ptr
)
737 block_size
= async
->prealloc_bufsz
- read_ptr
;
741 memcpy(dest
, src
, block_size
);
742 nbytes
-= block_size
;
748 unsigned int comedi_buf_read_n_available(struct comedi_async
*async
)
754 num_bytes
= async
->munge_count
- async
->buf_read_count
;
755 /* barrier insures the read of munge_count in this
756 query occurs before any following reads of the buffer which
757 might be based on the return value from this query.
763 int comedi_buf_get(struct comedi_async
*async
, short *x
)
765 unsigned int n
= comedi_buf_read_n_available(async
);
767 if (n
< sizeof(short))
769 comedi_buf_read_alloc(async
, sizeof(short));
770 *x
= *(short *)(async
->prealloc_buf
+ async
->buf_read_ptr
);
771 comedi_buf_read_free(async
, sizeof(short));
775 int comedi_buf_put(struct comedi_async
*async
, short x
)
777 unsigned int n
= comedi_buf_write_alloc_strict(async
, sizeof(short));
779 if (n
< sizeof(short)) {
780 async
->events
|= COMEDI_CB_ERROR
;
783 *(short *)(async
->prealloc_buf
+ async
->buf_write_ptr
) = x
;
784 comedi_buf_write_free(async
, sizeof(short));
788 void comedi_reset_async_buf(struct comedi_async
*async
)
790 async
->buf_write_alloc_count
= 0;
791 async
->buf_write_count
= 0;
792 async
->buf_read_alloc_count
= 0;
793 async
->buf_read_count
= 0;
795 async
->buf_write_ptr
= 0;
796 async
->buf_read_ptr
= 0;
799 async
->scan_progress
= 0;
800 async
->munge_chan
= 0;
801 async
->munge_count
= 0;
802 async
->munge_ptr
= 0;
807 int comedi_auto_config(struct device
*hardware_device
, const char *board_name
,
808 const int *options
, unsigned num_options
)
810 struct comedi_devconfig it
;
812 struct comedi_device_file_info
*dev_file_info
;
814 unsigned *private_data
= NULL
;
816 if (!comedi_autoconfig
) {
817 dev_set_drvdata(hardware_device
, NULL
);
821 minor
= comedi_alloc_board_minor(hardware_device
);
825 private_data
= kmalloc(sizeof(unsigned), GFP_KERNEL
);
826 if (private_data
== NULL
) {
830 *private_data
= minor
;
831 dev_set_drvdata(hardware_device
, private_data
);
833 dev_file_info
= comedi_get_device_file_info(minor
);
835 memset(&it
, 0, sizeof(it
));
836 strncpy(it
.board_name
, board_name
, COMEDI_NAMELEN
);
837 it
.board_name
[COMEDI_NAMELEN
- 1] = '\0';
838 BUG_ON(num_options
> COMEDI_NDEVCONFOPTS
);
839 memcpy(it
.options
, options
, num_options
* sizeof(int));
841 mutex_lock(&dev_file_info
->device
->mutex
);
842 retval
= comedi_device_attach(dev_file_info
->device
, &it
);
843 mutex_unlock(&dev_file_info
->device
->mutex
);
848 comedi_free_board_minor(minor
);
853 void comedi_auto_unconfig(struct device
*hardware_device
)
855 unsigned *minor
= (unsigned *)dev_get_drvdata(hardware_device
);
859 BUG_ON(*minor
>= COMEDI_NUM_BOARD_MINORS
);
861 comedi_free_board_minor(*minor
);
862 dev_set_drvdata(hardware_device
, NULL
);
866 int comedi_pci_auto_config(struct pci_dev
*pcidev
, const char *board_name
)
871 options
[0] = pcidev
->bus
->number
;
873 options
[1] = PCI_SLOT(pcidev
->devfn
);
875 return comedi_auto_config(&pcidev
->dev
, board_name
,
876 options
, ARRAY_SIZE(options
));
879 void comedi_pci_auto_unconfig(struct pci_dev
*pcidev
)
881 comedi_auto_unconfig(&pcidev
->dev
);
884 int comedi_usb_auto_config(struct usb_device
*usbdev
, const char *board_name
)
886 BUG_ON(usbdev
== NULL
);
887 return comedi_auto_config(&usbdev
->dev
, board_name
, NULL
, 0);
890 void comedi_usb_auto_unconfig(struct usb_device
*usbdev
)
892 BUG_ON(usbdev
== NULL
);
893 comedi_auto_unconfig(&usbdev
->dev
);