aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre
diff options
context:
space:
mode:
authorSwee Hua Law <sweehua81@gmail.com>2015-08-11 21:32:29 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-08-14 18:48:34 -0700
commit94a99b46116e82aee359265a1ce48ebffe37a479 (patch)
treea124f48d018b11d9164f8324c95a7268d4bc9db0 /drivers/staging/lustre/lustre
parentstaging: lustre: Remove unnecessary externs (diff)
downloadlinux-dev-94a99b46116e82aee359265a1ce48ebffe37a479.tar.xz
linux-dev-94a99b46116e82aee359265a1ce48ebffe37a479.zip
staging: lustre: Do not init global to NULL
Remove "= NULL" in global variable Signed-off-by: Swee Hua Law <sweehua81@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre')
-rw-r--r--drivers/staging/lustre/lustre/llite/lloop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/llite/lloop.c b/drivers/staging/lustre/lustre/llite/lloop.c
index 56938d2446bf..06f5e51ecd9e 100644
--- a/drivers/staging/lustre/lustre/llite/lloop.c
+++ b/drivers/staging/lustre/lustre/llite/lloop.c
@@ -162,7 +162,7 @@ static int max_loop = MAX_LOOP_DEFAULT;
static struct lloop_device *loop_dev;
static struct gendisk **disks;
static struct mutex lloop_mutex;
-static void *ll_iocontrol_magic = NULL;
+static void *ll_iocontrol_magic;
static loff_t get_loop_size(struct lloop_device *lo, struct file *file)
{