From b2926ae0bbf35b51a6bb90b524597c44db928bf7 Mon Sep 17 00:00:00 2001 From: Jeff Schroeder Date: Tue, 20 Nov 2007 11:00:21 -0800 Subject: [PATCH 4/5] CodingStyle add spaces around equals signs Signed-off-by: Jeff Schroeder --- dm-ddsnap.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dm-ddsnap.c b/dm-ddsnap.c index 38e244e..9ab517d 100644 --- a/dm-ddsnap.c +++ b/dm-ddsnap.c @@ -944,7 +944,7 @@ static void flush_list(struct devinfo *info, struct list_head *flush_list) struct list_head *entry, *tmp; list_for_each_safe(entry, tmp, flush_list) { struct pending *pending = list_entry(entry, struct pending, list); - struct bio *bio=pending->bio; + struct bio *bio = pending->bio; list_del(entry); kmem_cache_free(pending_cache, pending); bio_io_error(bio, bio->bi_size); @@ -1274,7 +1274,7 @@ static struct file_operations ddsnap_proc_fops = { .release = single_release, }; -static struct proc_dir_entry *ddsnap_proc_root=NULL; // initialized in dm_ddsnap_init +static struct proc_dir_entry *ddsnap_proc_root = NULL; // initialized in dm_ddsnap_init static struct semaphore ddsnap_proc_sem; static void ddsnap_add_proc(const char *name, struct dm_target *target) -- 1.5.2.5