Module Name: src Committed By: thorpej Date: Tue Jan 2 07:34:27 UTC 2024
Modified Files: src/sys/dev/fdt: gfrtc_fdt.c Log Message: Adapt to changes in the generic gfrtc code. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/dev/fdt/gfrtc_fdt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/fdt/gfrtc_fdt.c diff -u src/sys/dev/fdt/gfrtc_fdt.c:1.2 src/sys/dev/fdt/gfrtc_fdt.c:1.3 --- src/sys/dev/fdt/gfrtc_fdt.c:1.2 Fri Dec 29 23:31:44 2023 +++ src/sys/dev/fdt/gfrtc_fdt.c Tue Jan 2 07:34:27 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: gfrtc_fdt.c,v 1.2 2023/12/29 23:31:44 thorpej Exp $ */ +/* $NetBSD: gfrtc_fdt.c,v 1.3 2024/01/02 07:34:27 thorpej Exp $ */ /*- * Copyright (c) 2023 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: gfrtc_fdt.c,v 1.2 2023/12/29 23:31:44 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: gfrtc_fdt.c,v 1.3 2024/01/02 07:34:27 thorpej Exp $"); #include <sys/param.h> @@ -79,10 +79,7 @@ gfrtc_fdt_attach(device_t parent, device return; } - aprint_naive("\n"); - aprint_normal(": Google Goldfish RTC\n"); - - gfrtc_attach(sc); + gfrtc_attach(sc, true); } CFATTACH_DECL_NEW(gfrtc_fdt, sizeof(struct gfrtc_softc),