From 1b3b35987cc3e8c555f148306234e5f732761bd5 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Tue, 28 Oct 2008 21:49:02 +0000 Subject: fix a large number of warnings found by sparse, the kernel code sanity checking tool. some of these fixes are non-optimal (casting 'unsigned long' to '__user void *'), but are unavoidable in many cases. started from tzafrir's patch, did most of the work myself. (closes issue #13763) Reported by: tzafrir Patches: sparse_fixes_1.diff uploaded by tzafrir (license 46) git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@5162 a0bf4364-ded3-4de4-8d8a-66a801d63aff --- drivers/dahdi/dahdi_dynamic_eth.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'drivers/dahdi/dahdi_dynamic_eth.c') diff --git a/drivers/dahdi/dahdi_dynamic_eth.c b/drivers/dahdi/dahdi_dynamic_eth.c index 7017f75..ff26420 100644 --- a/drivers/dahdi/dahdi_dynamic_eth.c +++ b/drivers/dahdi/dahdi_dynamic_eth.c @@ -59,7 +59,7 @@ static struct ztdeth { struct ztdeth *next; } *zdevs = NULL; -struct dahdi_span *ztdeth_getspan(unsigned char *addr, unsigned short subaddr) +static struct dahdi_span *ztdeth_getspan(unsigned char *addr, unsigned short subaddr) { unsigned long flags; struct ztdeth *z; @@ -207,9 +207,9 @@ static int ztdeth_flush(void) } static struct packet_type ztdeth_ptype = { - type: __constant_htons(ETH_P_DAHDI_DETH), /* Protocol */ - dev: NULL, /* Device (NULL = wildcard) */ - func: ztdeth_rcv, /* Receiver */ + .type = __constant_htons(ETH_P_DAHDI_DETH), /* Protocol */ + .dev = NULL, /* Device (NULL = wildcard) */ + .func = ztdeth_rcv, /* Receiver */ }; static int digit2int(char d) @@ -409,7 +409,7 @@ static struct dahdi_dynamic_driver ztd_eth = { }; static struct notifier_block ztdeth_nblock = { - notifier_call: ztdeth_notifier, + .notifier_call = ztdeth_notifier, }; static int __init ztdeth_init(void) -- cgit v1.2.3