diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2023-04-06 19:02:30 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2023-04-06 19:02:30 +0000 |
commit | c9ce27517372536720f5f97ae822c187ec02b652 (patch) | |
tree | c0323d53ccada3c061ebed1a5178d2ed866c7d55 /sys | |
parent | 0756604ce689f709c8692205f6762a9bb96e800e (diff) |
The simplebus_attach() function already prints a newline, so drop it here.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/fdt/rkgrf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/fdt/rkgrf.c b/sys/dev/fdt/rkgrf.c index b5ede2891f8..b3c5d76474b 100644 --- a/sys/dev/fdt/rkgrf.c +++ b/sys/dev/fdt/rkgrf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rkgrf.c,v 1.5 2021/10/24 17:52:26 mpi Exp $ */ +/* $OpenBSD: rkgrf.c,v 1.6 2023/04/06 19:02:29 kettenis Exp $ */ /* * Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org> * @@ -82,8 +82,6 @@ rkgrf_attach(struct device *parent, struct device *self, void *aux) return; } - printf("\n"); - regmap_register(faa->fa_node, sc->sc_iot, sc->sc_ioh, faa->fa_reg[0].size); |