mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-11 22:17:44 -04:00
Staging: comedi: make comedi_alloc_board_minor local to comedi core
No one outside of the comedi core calls this function, so create an internal.h file to put the prototype in, and don't export it to the world. Cc: Ian Abbott <abbotti@mev.co.uk> Cc: Frank Mori Hess <fmhess@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
#include <linux/io.h>
|
||||
#include <linux/uaccess.h>
|
||||
|
||||
/* #include "kvmem.h" */
|
||||
#include "internal.h"
|
||||
|
||||
MODULE_AUTHOR("http://www.comedi.org");
|
||||
MODULE_DESCRIPTION("Comedi core module");
|
||||
@@ -2156,7 +2156,6 @@ int comedi_alloc_board_minor(struct device *hardware_device)
|
||||
}
|
||||
return i;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(comedi_alloc_board_minor);
|
||||
|
||||
void comedi_free_board_minor(unsigned minor)
|
||||
{
|
||||
|
||||
@@ -522,7 +522,6 @@ static inline void *comedi_aux_data(int options[], int n)
|
||||
return (void *)address;
|
||||
}
|
||||
|
||||
int comedi_alloc_board_minor(struct device *hardware_device);
|
||||
void comedi_free_board_minor(unsigned minor);
|
||||
int comedi_alloc_subdevice_minor(struct comedi_device *dev,
|
||||
struct comedi_subdevice *s);
|
||||
|
||||
@@ -37,15 +37,16 @@
|
||||
#include <linux/ioport.h>
|
||||
#include <linux/mm.h>
|
||||
#include <linux/slab.h>
|
||||
#include "comedidev.h"
|
||||
#include <linux/highmem.h> /* for SuSE brokenness */
|
||||
#include <linux/vmalloc.h>
|
||||
#include <linux/cdev.h>
|
||||
#include <linux/dma-mapping.h>
|
||||
|
||||
#include <linux/io.h>
|
||||
#include <asm/system.h>
|
||||
|
||||
#include "comedidev.h"
|
||||
#include "internal.h"
|
||||
|
||||
static int postconfig(struct comedi_device *dev);
|
||||
static int insn_rw_emulate_bits(struct comedi_device *dev,
|
||||
struct comedi_subdevice *s,
|
||||
|
||||
2
drivers/staging/comedi/internal.h
Normal file
2
drivers/staging/comedi/internal.h
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
int comedi_alloc_board_minor(struct device *hardware_device);
|
||||
Reference in New Issue
Block a user