From 4d651f4e5faaa2c43aa528be6aef86ee40ae55d3 Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Fri, 11 Nov 2011 04:13:47 +0000 Subject: [PATCH] Style. MFC after: 1 week --- sys/kern/kern_conf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/kern/kern_conf.c b/sys/kern/kern_conf.c index 1f170597e9a..267a20716e2 100644 --- a/sys/kern/kern_conf.c +++ b/sys/kern/kern_conf.c @@ -1009,8 +1009,7 @@ make_dev_physpath_alias(int flags, struct cdev **cdev, struct cdev *pdev, } sprintf(devfspath, "%s/%s", physpath, pdev->si_name); - if (old_alias != NULL - && strcmp(old_alias->si_name, devfspath) == 0) { + if (old_alias != NULL && strcmp(old_alias->si_name, devfspath) == 0) { /* Retain the existing alias. */ *cdev = old_alias; old_alias = NULL;