Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch Sprinkle #include "opt_arm_debug.h" where VERBOSE_I...



details:   https://anonhg.NetBSD.org/src/rev/8a766d90e085
branches:  trunk
changeset: 834154:8a766d90e085
user:      skrll <skrll%NetBSD.org@localhost>
date:      Tue Jul 31 06:46:25 2018 +0000

description:
Sprinkle #include "opt_arm_debug.h" where VERBOSE_INIT_ARM is used

diffstat:

 sys/arch/arm/at91/at91bus.c                               |  5 +++--
 sys/arch/arm/broadcom/bcm53xx_board.c                     |  5 +++--
 sys/arch/arm/samsung/exynos_platform.c                    |  5 +++--
 sys/arch/arm/samsung/exynos_soc.c                         |  5 +++--
 sys/arch/arm/xscale/i80312_mem.c                          |  6 ++++--
 sys/arch/evbarm/adi_brh/brh_machdep.c                     |  5 +++--
 sys/arch/evbarm/armadaxp/armadaxp_machdep.c               |  5 +++--
 sys/arch/evbarm/armadillo/armadillo9_machdep.c            |  5 +++--
 sys/arch/evbarm/bcm53xx/bcm53xx_machdep.c                 |  5 +++--
 sys/arch/evbarm/beagle/beagle_machdep.c                   |  5 +++--
 sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c                 |  3 ++-
 sys/arch/evbarm/gemini/gemini_machdep.c                   |  5 +++--
 sys/arch/evbarm/gumstix/gumstix_machdep.c                 |  3 ++-
 sys/arch/evbarm/hawk/hawk_machdep.c                       |  3 ++-
 sys/arch/evbarm/hdl_g/hdlg_machdep.c                      |  5 +++--
 sys/arch/evbarm/imx23_olinuxino/imx23_olinuxino_machdep.c |  3 ++-
 sys/arch/evbarm/imx31/imx31lk_machdep.c                   |  5 +++--
 sys/arch/evbarm/integrator/integrator_machdep.c           |  5 +++--
 sys/arch/evbarm/iq80310/iq80310_machdep.c                 |  5 +++--
 sys/arch/evbarm/ixdp425/ixdp425_machdep.c                 |  5 +++--
 sys/arch/evbarm/ixm1200/ixm1200_machdep.c                 |  5 +++--
 sys/arch/evbarm/lubbock/lubbock_machdep.c                 |  5 +++--
 sys/arch/evbarm/marvell/marvell_machdep.c                 |  5 +++--
 sys/arch/evbarm/mini2440/mini2440_machdep.c               |  3 ++-
 sys/arch/evbarm/npwr_fc/npwr_fc_machdep.c                 |  5 +++--
 sys/arch/evbarm/nslu2/nslu2_machdep.c                     |  5 +++--
 sys/arch/evbarm/osk5912/osk5912_machdep.c                 |  5 +++--
 sys/arch/evbarm/smdk2xx0/smdk2410_machdep.c               |  5 +++--
 sys/arch/evbarm/tisdp24xx/sdp24xx_machdep.c               |  5 +++--
 sys/arch/evbarm/tsarm/tsarm_machdep.c                     |  5 +++--
 sys/arch/evbarm/viper/viper_machdep.c                     |  5 +++--
 31 files changed, 89 insertions(+), 57 deletions(-)

diffs (truncated from 614 to 300 lines):

diff -r 6f1810855211 -r 8a766d90e085 sys/arch/arm/at91/at91bus.c
--- a/sys/arch/arm/at91/at91bus.c       Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/arm/at91/at91bus.c       Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: at91bus.c,v 1.20 2018/07/15 05:16:41 maxv Exp $        */
+/*     $NetBSD: at91bus.c,v 1.21 2018/07/31 06:46:25 skrll Exp $       */
 
 /*
  * Copyright (c) 2007 Embedtronics Oy
@@ -27,8 +27,9 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: at91bus.c,v 1.20 2018/07/15 05:16:41 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: at91bus.c,v 1.21 2018/07/31 06:46:25 skrll Exp $");
 
+#include "opt_arm_debug.h"
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
 #include "opt_pmap_debug.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/arm/broadcom/bcm53xx_board.c
--- a/sys/arch/arm/broadcom/bcm53xx_board.c     Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/arm/broadcom/bcm53xx_board.c     Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bcm53xx_board.c,v 1.24 2018/06/05 08:03:28 hkenken Exp $       */
+/*     $NetBSD: bcm53xx_board.c,v 1.25 2018/07/31 06:46:25 skrll Exp $ */
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -28,6 +28,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include "opt_arm_debug.h"
 #include "opt_broadcom.h"
 #include "arml2cc.h"
 
@@ -35,7 +36,7 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(1, "$NetBSD: bcm53xx_board.c,v 1.24 2018/06/05 08:03:28 hkenken Exp $");
+__KERNEL_RCSID(1, "$NetBSD: bcm53xx_board.c,v 1.25 2018/07/31 06:46:25 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/arm/samsung/exynos_platform.c
--- a/sys/arch/arm/samsung/exynos_platform.c    Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/arm/samsung/exynos_platform.c    Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: exynos_platform.c,v 1.10 2018/07/02 12:49:37 jmcneill Exp $ */
+/* $NetBSD: exynos_platform.c,v 1.11 2018/07/31 06:46:25 skrll Exp $ */
 
 /*-
  * Copyright (c) 2017 Jared D. McNeill <jmcneill%invisible.ca@localhost>
@@ -26,6 +26,7 @@
  * SUCH DAMAGE.
  */
 
+#include "opt_arm_debug.h"
 #include "opt_exynos.h"
 #include "opt_multiprocessor.h"
 #include "opt_fdt_arm.h"
@@ -33,7 +34,7 @@
 #include "ukbd.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: exynos_platform.c,v 1.10 2018/07/02 12:49:37 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: exynos_platform.c,v 1.11 2018/07/31 06:46:25 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/arm/samsung/exynos_soc.c
--- a/sys/arch/arm/samsung/exynos_soc.c Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/arm/samsung/exynos_soc.c Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exynos_soc.c,v 1.33 2018/07/05 13:11:58 jmcneill Exp $ */
+/*     $NetBSD: exynos_soc.c,v 1.34 2018/07/31 06:46:25 skrll Exp $    */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -29,10 +29,11 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+#include "opt_arm_debug.h"
 #include "opt_exynos.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.33 2018/07/05 13:11:58 jmcneill Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.34 2018/07/31 06:46:25 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/arm/xscale/i80312_mem.c
--- a/sys/arch/arm/xscale/i80312_mem.c  Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/arm/xscale/i80312_mem.c  Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: i80312_mem.c,v 1.5 2011/07/01 20:32:51 dyoung Exp $    */
+/*     $NetBSD: i80312_mem.c,v 1.6 2018/07/31 06:46:25 skrll Exp $     */
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -39,8 +39,10 @@
  * Intel i80312 Companion I/O memory controller support.
  */
 
+#include "opt_arm_debug.h"
+
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: i80312_mem.c,v 1.5 2011/07/01 20:32:51 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: i80312_mem.c,v 1.6 2018/07/31 06:46:25 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/adi_brh/brh_machdep.c
--- a/sys/arch/evbarm/adi_brh/brh_machdep.c     Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/adi_brh/brh_machdep.c     Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: brh_machdep.c,v 1.44 2016/12/22 14:47:55 cherry Exp $  */
+/*     $NetBSD: brh_machdep.c,v 1.45 2018/07/31 06:46:25 skrll Exp $   */
 
 /*
  * Copyright (c) 2001, 2002, 2003 Wasabi Systems, Inc.
@@ -73,8 +73,9 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: brh_machdep.c,v 1.44 2016/12/22 14:47:55 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: brh_machdep.c,v 1.45 2018/07/31 06:46:25 skrll Exp $");
 
+#include "opt_arm_debug.h"
 #include "opt_ddb.h"
 #include "opt_pmap_debug.h"
 
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/armadaxp/armadaxp_machdep.c
--- a/sys/arch/evbarm/armadaxp/armadaxp_machdep.c       Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/armadaxp/armadaxp_machdep.c       Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: armadaxp_machdep.c,v 1.14 2018/07/15 05:16:41 maxv Exp $       */
+/*     $NetBSD: armadaxp_machdep.c,v 1.15 2018/07/31 06:46:26 skrll Exp $      */
 /*******************************************************************************
 Copyright (C) Marvell International Ltd. and its affiliates
 
@@ -37,8 +37,9 @@
 *******************************************************************************/
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: armadaxp_machdep.c,v 1.14 2018/07/15 05:16:41 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: armadaxp_machdep.c,v 1.15 2018/07/31 06:46:26 skrll Exp $");
 
+#include "opt_arm_debug.h"
 #include "opt_machdep.h"
 #include "opt_mvsoc.h"
 #include "opt_evbarm_boardtype.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/armadillo/armadillo9_machdep.c
--- a/sys/arch/evbarm/armadillo/armadillo9_machdep.c    Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/armadillo/armadillo9_machdep.c    Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: armadillo9_machdep.c,v 1.29 2016/12/22 14:47:55 cherry Exp $   */
+/*     $NetBSD: armadillo9_machdep.c,v 1.30 2018/07/31 06:46:26 skrll Exp $    */
 
 /*
  * Copyright (c) 2001, 2002, 2003 Wasabi Systems, Inc.
@@ -110,8 +110,9 @@
 */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: armadillo9_machdep.c,v 1.29 2016/12/22 14:47:55 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: armadillo9_machdep.c,v 1.30 2018/07/31 06:46:26 skrll Exp $");
 
+#include "opt_arm_debug.h"
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
 #include "opt_pmap_debug.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/bcm53xx/bcm53xx_machdep.c
--- a/sys/arch/evbarm/bcm53xx/bcm53xx_machdep.c Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/bcm53xx/bcm53xx_machdep.c Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bcm53xx_machdep.c,v 1.10 2018/07/17 18:41:01 christos Exp $    */
+/*     $NetBSD: bcm53xx_machdep.c,v 1.11 2018/07/31 06:46:26 skrll Exp $       */
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -33,8 +33,9 @@
 #define IDM_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bcm53xx_machdep.c,v 1.10 2018/07/17 18:41:01 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bcm53xx_machdep.c,v 1.11 2018/07/31 06:46:26 skrll Exp $");
 
+#include "opt_arm_debug.h"
 #include "opt_evbarm_boardtype.h"
 #include "opt_broadcom.h"
 #include "opt_kgdb.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/beagle/beagle_machdep.c
--- a/sys/arch/evbarm/beagle/beagle_machdep.c   Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/beagle/beagle_machdep.c   Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: beagle_machdep.c,v 1.71 2018/07/17 18:41:01 christos Exp $ */
+/*     $NetBSD: beagle_machdep.c,v 1.72 2018/07/31 06:46:26 skrll Exp $ */
 
 /*
  * Machine dependent functions for kernel setup for TI OSK5912 board.
@@ -125,8 +125,9 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: beagle_machdep.c,v 1.71 2018/07/17 18:41:01 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: beagle_machdep.c,v 1.72 2018/07/31 06:46:26 skrll Exp $");
 
+#include "opt_arm_debug.h"
 #include "opt_machdep.h"
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c
--- a/sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/g42xxeb/g42xxeb_machdep.c Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: g42xxeb_machdep.c,v 1.30 2016/12/22 14:47:55 cherry Exp $ */
+/*     $NetBSD: g42xxeb_machdep.c,v 1.31 2018/07/31 06:46:26 skrll Exp $ */
 
 /*
  * Copyright (c) 2002, 2003, 2004, 2005  Genetec Corporation.  
@@ -107,6 +107,7 @@
  * boards using RedBoot firmware.
  */
 
+#include "opt_arm_debug.h"
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
 #include "opt_pmap_debug.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/gemini/gemini_machdep.c
--- a/sys/arch/evbarm/gemini/gemini_machdep.c   Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/gemini/gemini_machdep.c   Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: gemini_machdep.c,v 1.25 2018/07/15 05:16:42 maxv Exp $ */
+/*     $NetBSD: gemini_machdep.c,v 1.26 2018/07/31 06:46:26 skrll Exp $        */
 
 /* adapted from:
  *     NetBSD: sdp24xx_machdep.c,v 1.4 2008/08/27 11:03:10 matt Exp
@@ -129,8 +129,9 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gemini_machdep.c,v 1.25 2018/07/15 05:16:42 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gemini_machdep.c,v 1.26 2018/07/31 06:46:26 skrll Exp $");
 
+#include "opt_arm_debug.h"
 #include "opt_machdep.h"
 #include "opt_ddb.h"
 #include "opt_kgdb.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/gumstix/gumstix_machdep.c
--- a/sys/arch/evbarm/gumstix/gumstix_machdep.c Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/gumstix/gumstix_machdep.c Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: gumstix_machdep.c,v 1.59 2018/06/05 08:03:28 hkenken Exp $ */
+/*     $NetBSD: gumstix_machdep.c,v 1.60 2018/07/31 06:46:26 skrll Exp $ */
 /*
  * Copyright (C) 2005, 2006, 2007  WIDE Project and SOUM Corporation.
  * All rights reserved.
@@ -137,6 +137,7 @@
  * boards using RedBoot firmware.
  */
 
+#include "opt_arm_debug.h"
 #include "opt_com.h"
 #include "opt_cputypes.h"
 #include "opt_evbarm_boardtype.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/hawk/hawk_machdep.c
--- a/sys/arch/evbarm/hawk/hawk_machdep.c       Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/hawk/hawk_machdep.c       Tue Jul 31 06:46:25 2018 +0000
@@ -26,8 +26,9 @@
 
 #include <sys/cdefs.h>
 
-__KERNEL_RCSID(0, "$NetBSD: hawk_machdep.c,v 1.2 2018/07/17 18:41:01 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hawk_machdep.c,v 1.3 2018/07/31 06:46:26 skrll Exp $");
 
+#include "opt_arm_debug.h"
 #include "opt_timer.h"
 #include "opt_machdep.h"
 #include "opt_ddb.h"
diff -r 6f1810855211 -r 8a766d90e085 sys/arch/evbarm/hdl_g/hdlg_machdep.c
--- a/sys/arch/evbarm/hdl_g/hdlg_machdep.c      Mon Jul 30 22:58:09 2018 +0000
+++ b/sys/arch/evbarm/hdl_g/hdlg_machdep.c      Tue Jul 31 06:46:25 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: hdlg_machdep.c,v 1.23 2016/12/22 14:47:55 cherry Exp $ */
+/*     $NetBSD: hdlg_machdep.c,v 1.24 2018/07/31 06:46:26 skrll Exp $  */
 
 /*
  * Copyright (c) 2001, 2002, 2003 Wasabi Systems, Inc.
@@ -73,8 +73,9 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hdlg_machdep.c,v 1.23 2016/12/22 14:47:55 cherry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hdlg_machdep.c,v 1.24 2018/07/31 06:46:26 skrll Exp $");
 
+#include "opt_arm_debug.h"



Home | Main Index | Thread Index | Old Index