Staging: sep: netlink - what netlink
Kill unused stuff Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
266aa856f2
commit
8d80e4e2da
|
@ -55,10 +55,6 @@
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/rar_register.h>
|
#include <linux/rar_register.h>
|
||||||
|
|
||||||
#include <linux/netlink.h>
|
|
||||||
#include <linux/connector.h>
|
|
||||||
#include <linux/cn_proc.h>
|
|
||||||
|
|
||||||
#include "../memrar/memrar.h"
|
#include "../memrar/memrar.h"
|
||||||
|
|
||||||
#include "sep_driver_hw_defs.h"
|
#include "sep_driver_hw_defs.h"
|
||||||
|
@ -943,23 +939,11 @@ static unsigned long sep_set_time(struct sep_device *sep)
|
||||||
*/
|
*/
|
||||||
static int sep_init_caller_id(struct sep_device *sep)
|
static int sep_init_caller_id(struct sep_device *sep)
|
||||||
{
|
{
|
||||||
/* return value */
|
|
||||||
int ret_val;
|
|
||||||
|
|
||||||
/* counter */
|
|
||||||
int counter;
|
int counter;
|
||||||
|
|
||||||
struct cb_id caller_id;
|
|
||||||
|
|
||||||
dev_dbg(&sep->pdev->dev,
|
dev_dbg(&sep->pdev->dev,
|
||||||
"sep_init_caller_id start\n");
|
"sep_init_caller_id start\n");
|
||||||
|
|
||||||
ret_val = 0;
|
|
||||||
|
|
||||||
/* init cb_id struct */
|
|
||||||
caller_id.idx = CN_IDX_PROC;
|
|
||||||
caller_id.val = CN_VAL_PROC;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* init caller id table
|
* init caller id table
|
||||||
* note that locking is not needed here as this function is
|
* note that locking is not needed here as this function is
|
||||||
|
@ -975,16 +959,10 @@ static int sep_init_caller_id(struct sep_device *sep)
|
||||||
dev_dbg(&sep->pdev->dev,
|
dev_dbg(&sep->pdev->dev,
|
||||||
"caller id table init finished\n");
|
"caller id table init finished\n");
|
||||||
|
|
||||||
/* register to netlink connector */
|
|
||||||
|
|
||||||
if (ret_val)
|
|
||||||
dev_warn(&sep->pdev->dev,
|
|
||||||
"cn_add_callback failed %x\n", ret_val);
|
|
||||||
|
|
||||||
dev_dbg(&sep->pdev->dev,
|
dev_dbg(&sep->pdev->dev,
|
||||||
"sep_init_caller_id end\n");
|
"sep_init_caller_id end\n");
|
||||||
|
|
||||||
return ret_val;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue