diff options
author | 2020-10-30 13:36:45 +0000 | |
---|---|---|
committer | 2020-10-30 13:36:45 +0000 | |
commit | cb96bc0b28ce6dc9da99fac1475813a47fadabb0 (patch) | |
tree | 4f1693f46010c1d6cf6de10f9f412266a865b8eb | |
parent | Add a comment that explains why the major/minor of the device is set (diff) | |
download | wireguard-openbsd-cb96bc0b28ce6dc9da99fac1475813a47fadabb0.tar.xz wireguard-openbsd-cb96bc0b28ce6dc9da99fac1475813a47fadabb0.zip |
No need to print that we're the console device; wsdisplay(4) will do that
for us.
-rw-r--r-- | sys/arch/powerpc64/dev/astfb.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/powerpc64/dev/astfb.c b/sys/arch/powerpc64/dev/astfb.c index 98846ab2548..0b193f4e82d 100644 --- a/sys/arch/powerpc64/dev/astfb.c +++ b/sys/arch/powerpc64/dev/astfb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: astfb.c,v 1.2 2020/10/30 13:11:11 kettenis Exp $ */ +/* $OpenBSD: astfb.c,v 1.3 2020/10/30 13:36:45 kettenis Exp $ */ /* * Copyright (c) 2020 Mark Kettenis. @@ -124,9 +124,6 @@ astfb_attach(struct device *parent, struct device *self, void *aux) printf("\n"); - if (console) - printf("%s: console\n", sc->sc_dev.dv_xname); - ri->ri_bits = bus_space_vaddr(sc->sc_iot, sc->sc_ioh); ri->ri_hw = sc; |