diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-07-18 00:53:46 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-07-18 00:53:46 +0000 |
commit | 36ea9a4f6364d42f9553f0905371e9055ad0f0c8 (patch) | |
tree | ffde36b46c12f9927cd48ccdaaa74f93a485dce5 | |
parent | b3d7b23be22ac7803e472fe3e52c2daf1408fd15 (diff) |
fix previous to make sxiccmu compile again
-rw-r--r-- | sys/dev/fdt/sxiccmu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fdt/sxiccmu.c b/sys/dev/fdt/sxiccmu.c index aedf2f43b4c..7032ad91b6e 100644 --- a/sys/dev/fdt/sxiccmu.c +++ b/sys/dev/fdt/sxiccmu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sxiccmu.c,v 1.4 2017/07/17 19:28:35 kettenis Exp $ */ +/* $OpenBSD: sxiccmu.c,v 1.5 2017/07/18 00:53:45 jsg Exp $ */ /* * Copyright (c) 2007,2009 Dale Rahn <drahn@openbsd.org> * Copyright (c) 2013 Artturi Alm @@ -139,7 +139,7 @@ sxiccmu_attach(struct device *parent, struct device *self, void *aux) sc->sc_get_frequency = sxiccmu_a64_get_frequency; sc->sc_set_frequency = sxiccmu_a64_set_frequency; } else if (OF_is_compatible(sc->sc_node, "allwinner,sun8i-h3-ccu") || - OF_is_compatible(sc->sc_node, "allwinner,sun50i-h5-ccu") { + OF_is_compatible(sc->sc_node, "allwinner,sun50i-h5-ccu")) { KASSERT(faa->fa_nreg > 0); sc->sc_gates = sun8i_h3_gates; sc->sc_ngates = nitems(sun8i_h3_gates); |