summaryrefslogtreecommitdiffstats
path: root/nrconfig.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 01:42:03 +0200
committerRalf Baechle <ralf@linux-mips.org>2013-06-17 17:04:02 +0200
commitda5b97c823d64758eb2d092a0eee500119385529 (patch)
treedb23212cb5eeadff726b6d378f38bbf7c082c6b1 /nrconfig.c
parentd41edac9583dd2a4925fcd30b6ef646e9c76e465 (diff)
Remove useless initializations to 0 or NULL.
They only inflate the .data section of the binary. Initializations to FALSE are still left to do. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'nrconfig.c')
-rw-r--r--nrconfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nrconfig.c b/nrconfig.c
index f275a15..aea1e52 100644
--- a/nrconfig.c
+++ b/nrconfig.c
@@ -29,8 +29,8 @@ typedef struct _nrport
char *Description;
} NR_Port;
-static NR_Port *nr_ports = NULL;
-static NR_Port *nr_port_tail = NULL;
+static NR_Port *nr_ports;
+static NR_Port *nr_port_tail;
static int is_same_call(char *call1, char *call2)
{