svn commit: r366799 - head/sys/dev/extres/clk

Bjoern A. Zeeb bz at FreeBSD.org
Sat Oct 17 23:42:34 UTC 2020


Author: bz
Date: Sat Oct 17 23:42:33 2020
New Revision: 366799
URL: https://svnweb.freebsd.org/changeset/base/366799

Log:
  clk: fix indentation
  
  Just fix indentation of an if() clause.
  No functional changes intended.
  
  MFC after:	3 days

Modified:
  head/sys/dev/extres/clk/clk.c

Modified: head/sys/dev/extres/clk/clk.c
==============================================================================
--- head/sys/dev/extres/clk/clk.c	Sat Oct 17 22:47:08 2020	(r366798)
+++ head/sys/dev/extres/clk/clk.c	Sat Oct 17 23:42:33 2020	(r366799)
@@ -544,7 +544,7 @@ clknode_create(struct clkdom * clkdom, clknode_class_t
 	CLK_TOPO_SLOCK();
 	clknode = clknode_find_by_name(def->name);
 	CLK_TOPO_UNLOCK();
-		if (clknode !=  NULL) {
+	if (clknode !=  NULL) {
 		if (!(clknode->flags & CLK_NODE_LINKED) &&
 		    def->flags & CLK_NODE_LINKED) {
 			/*


More information about the svn-src-all mailing list