cipso: remove NULL assignment on static
Also add blank line after structure declarations Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4c787b1626
commit
988b13438c
|
@ -72,6 +72,7 @@ struct cipso_v4_map_cache_bkt {
|
||||||
u32 size;
|
u32 size;
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct cipso_v4_map_cache_entry {
|
struct cipso_v4_map_cache_entry {
|
||||||
u32 hash;
|
u32 hash;
|
||||||
unsigned char *key;
|
unsigned char *key;
|
||||||
|
@ -82,7 +83,8 @@ struct cipso_v4_map_cache_entry {
|
||||||
u32 activity;
|
u32 activity;
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
};
|
};
|
||||||
static struct cipso_v4_map_cache_bkt *cipso_v4_cache = NULL;
|
|
||||||
|
static struct cipso_v4_map_cache_bkt *cipso_v4_cache;
|
||||||
|
|
||||||
/* Restricted bitmap (tag #1) flags */
|
/* Restricted bitmap (tag #1) flags */
|
||||||
int cipso_v4_rbm_optfmt = 0;
|
int cipso_v4_rbm_optfmt = 0;
|
||||||
|
|
Loading…
Reference in New Issue