From owner-svn-src-stable-10@FreeBSD.ORG Thu Jan 23 12:02:06 2014 Return-Path: Delivered-To: svn-src-stable-10@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36C09B33; Thu, 23 Jan 2014 12:02:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2064615C4; Thu, 23 Jan 2014 12:02:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NC25Dp015926; Thu, 23 Jan 2014 12:02:05 GMT (envelope-from loos@svn.freebsd.org) Received: (from loos@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NC24NB015916; Thu, 23 Jan 2014 12:02:04 GMT (envelope-from loos@svn.freebsd.org) Message-Id: <201401231202.s0NC24NB015916@svn.freebsd.org> From: Luiz Otavio O Souza Date: Thu, 23 Jan 2014 12:02:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r261077 - in stable/10/sys: arm/broadcom/bcm2835 arm/lpc boot/uboot/lib dev/cesa dev/fdt powerpc/mpc85xx X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-10@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for only the 10-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jan 2014 12:02:06 -0000 Author: loos Date: Thu Jan 23 12:02:04 2014 New Revision: 261077 URL: http://svnweb.freebsd.org/changeset/base/261077 Log: MFC r257127: Remove all the instances of '#undef DEBUG' from kernel. Suggested by: rpaulo Approved by: adrian (mentor) Modified: stable/10/sys/arm/broadcom/bcm2835/bcm2835_gpio.c stable/10/sys/arm/lpc/if_lpe.c stable/10/sys/arm/lpc/lpc_mmc.c stable/10/sys/boot/uboot/lib/disk.c stable/10/sys/boot/uboot/lib/glue.c stable/10/sys/dev/cesa/cesa.c stable/10/sys/dev/fdt/fdt_slicer.c stable/10/sys/powerpc/mpc85xx/fsl_sdhc.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/arm/broadcom/bcm2835/bcm2835_gpio.c ============================================================================== --- stable/10/sys/arm/broadcom/bcm2835/bcm2835_gpio.c Thu Jan 23 10:18:28 2014 (r261076) +++ stable/10/sys/arm/broadcom/bcm2835/bcm2835_gpio.c Thu Jan 23 12:02:04 2014 (r261077) @@ -55,8 +55,6 @@ __FBSDID("$FreeBSD$"); #include "gpio_if.h" -#undef DEBUG - #ifdef DEBUG #define dprintf(fmt, args...) do { printf("%s(): ", __func__); \ printf(fmt,##args); } while (0) Modified: stable/10/sys/arm/lpc/if_lpe.c ============================================================================== --- stable/10/sys/arm/lpc/if_lpe.c Thu Jan 23 10:18:28 2014 (r261076) +++ stable/10/sys/arm/lpc/if_lpe.c Thu Jan 23 12:02:04 2014 (r261077) @@ -65,9 +65,6 @@ __FBSDID("$FreeBSD$"); #include "miibus_if.h" -#define DEBUG -#undef DEBUG - #ifdef DEBUG #define debugf(fmt, args...) do { printf("%s(): ", __func__); \ printf(fmt,##args); } while (0) Modified: stable/10/sys/arm/lpc/lpc_mmc.c ============================================================================== --- stable/10/sys/arm/lpc/lpc_mmc.c Thu Jan 23 10:18:28 2014 (r261076) +++ stable/10/sys/arm/lpc/lpc_mmc.c Thu Jan 23 12:02:04 2014 (r261077) @@ -64,9 +64,6 @@ __FBSDID("$FreeBSD$"); #include #include -#define DEBUG -#undef DEBUG - #ifdef DEBUG #define debugf(fmt, args...) do { printf("%s(): ", __func__); \ printf(fmt,##args); } while (0) Modified: stable/10/sys/boot/uboot/lib/disk.c ============================================================================== --- stable/10/sys/boot/uboot/lib/disk.c Thu Jan 23 10:18:28 2014 (r261076) +++ stable/10/sys/boot/uboot/lib/disk.c Thu Jan 23 12:02:04 2014 (r261077) @@ -45,9 +45,6 @@ __FBSDID("$FreeBSD$"); #include "glue.h" #include "libuboot.h" -#define DEBUG -#undef DEBUG - #define stor_printf(fmt, args...) do { \ printf("%s%d: ", dev->d_dev->dv_name, dev->d_unit); \ printf(fmt, ##args); \ Modified: stable/10/sys/boot/uboot/lib/glue.c ============================================================================== --- stable/10/sys/boot/uboot/lib/glue.c Thu Jan 23 10:18:28 2014 (r261076) +++ stable/10/sys/boot/uboot/lib/glue.c Thu Jan 23 12:02:04 2014 (r261077) @@ -34,9 +34,6 @@ __FBSDID("$FreeBSD$"); #include "api_public.h" #include "glue.h" -#define DEBUG -#undef DEBUG - #ifdef DEBUG #define debugf(fmt, args...) do { printf("%s(): ", __func__); printf(fmt,##args); } while (0) #else Modified: stable/10/sys/dev/cesa/cesa.c ============================================================================== --- stable/10/sys/dev/cesa/cesa.c Thu Jan 23 10:18:28 2014 (r261076) +++ stable/10/sys/dev/cesa/cesa.c Thu Jan 23 12:02:04 2014 (r261077) @@ -71,8 +71,6 @@ __FBSDID("$FreeBSD$"); #include #include "cesa.h" -#undef DEBUG - static int cesa_probe(device_t); static int cesa_attach(device_t); static int cesa_detach(device_t); Modified: stable/10/sys/dev/fdt/fdt_slicer.c ============================================================================== --- stable/10/sys/dev/fdt/fdt_slicer.c Thu Jan 23 10:18:28 2014 (r261076) +++ stable/10/sys/dev/fdt/fdt_slicer.c Thu Jan 23 12:02:04 2014 (r261077) @@ -35,9 +35,6 @@ __FBSDID("$FreeBSD$"); #include -#define DEBUG -#undef DEBUG - #ifdef DEBUG #define debugf(fmt, args...) do { printf("%s(): ", __func__); \ printf(fmt,##args); } while (0) Modified: stable/10/sys/powerpc/mpc85xx/fsl_sdhc.c ============================================================================== --- stable/10/sys/powerpc/mpc85xx/fsl_sdhc.c Thu Jan 23 10:18:28 2014 (r261076) +++ stable/10/sys/powerpc/mpc85xx/fsl_sdhc.c Thu Jan 23 12:02:04 2014 (r261077) @@ -64,8 +64,6 @@ __FBSDID("$FreeBSD$"); #include "fsl_sdhc.h" -#define DEBUG -#undef DEBUG #ifdef DEBUG #define DPRINTF(fmt, arg...) printf("DEBUG %s(): " fmt, __FUNCTION__, ##arg) #else