Module Name: src
Committed By: hkenken
Date: Wed Jun 20 05:59:22 UTC 2018
Modified Files:
src/sys/arch/arm/imx: imx6_board.c
Log Message:
Rename a9tmr to arma9tmr.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/imx/imx6_board.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/arch/arm/imx/imx6_board.c
diff -u src/sys/arch/arm/imx/imx6_board.c:1.9 src/sys/arch/arm/imx/imx6_board.c:1.10
--- src/sys/arch/arm/imx/imx6_board.c:1.9 Thu Nov 9 05:57:23 2017
+++ src/sys/arch/arm/imx/imx6_board.c Wed Jun 20 05:59:22 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: imx6_board.c,v 1.9 2017/11/09 05:57:23 hkenken Exp $ */
+/* $NetBSD: imx6_board.c,v 1.10 2018/06/20 05:59:22 hkenken Exp $ */
/*
* Copyright (c) 2012 Genetec Corporation. All rights reserved.
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: imx6_board.c,v 1.9 2017/11/09 05:57:23 hkenken Exp $");
+__KERNEL_RCSID(1, "$NetBSD: imx6_board.c,v 1.10 2018/06/20 05:59:22 hkenken Exp $");
#include "opt_imx.h"
#include "arml2cc.h"
@@ -219,7 +219,8 @@ imx6_device_register(device_t self, void
* We need to tell the A9 Global/Watchdog Timer
* what frequency it runs at.
*/
- if (device_is_a(self, "a9tmr") || device_is_a(self, "a9wdt")) {
+ if (device_is_a(self, "arma9tmr") ||
+ device_is_a(self, "a9wdt")) {
prop_dictionary_set_uint32(dict, "frequency",
imx6_armrootclk() / IMX6_PERIPHCLK_N);
return;