diff options
author | Wei Tang <tangwei@cmss.chinamobile.com> | 2015-11-24 09:58:46 +0800 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-11-24 15:24:25 -0700 |
commit | 1fe8f348416b3fb35ea3f24fa92bb1d29ffe7b0b (patch) | |
tree | e4c9efd58110467bfad713592d69ee1e84188a61 /block/genhd.c | |
parent | d674d4145e1909e0e4c394bb2633ef73d539bd27 (diff) | |
download | op-kernel-dev-1fe8f348416b3fb35ea3f24fa92bb1d29ffe7b0b.zip op-kernel-dev-1fe8f348416b3fb35ea3f24fa92bb1d29ffe7b0b.tar.gz |
block: do not initialise statics to 0 or NULL
This patch fixes the checkpatch.pl error to genhd.c:
ERROR: do not initialise statics to 0 or NULL
Signed-off-by: Wei Tang <tangwei@cmss.chinamobile.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block/genhd.c')
-rw-r--r-- | block/genhd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/genhd.c b/block/genhd.c index e5cafa5..78140b4 100644 --- a/block/genhd.c +++ b/block/genhd.c @@ -1421,7 +1421,7 @@ static DEFINE_MUTEX(disk_events_mutex); static LIST_HEAD(disk_events); /* disable in-kernel polling by default */ -static unsigned long disk_events_dfl_poll_msecs = 0; +static unsigned long disk_events_dfl_poll_msecs; static unsigned long disk_events_poll_jiffies(struct gendisk *disk) { |