From patchwork Thu Jun 30 12:37:48 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitry Baryshkov X-Patchwork-Id: 102753 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 8AFF6B6F53 for ; Thu, 30 Jun 2011 22:38:39 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751432Ab1F3Mi1 (ORCPT ); Thu, 30 Jun 2011 08:38:27 -0400 Received: from mail-ww0-f44.google.com ([74.125.82.44]:51937 "EHLO mail-ww0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752531Ab1F3MiV (ORCPT ); Thu, 30 Jun 2011 08:38:21 -0400 Received: by wwe5 with SMTP id 5so2200790wwe.1 for ; Thu, 30 Jun 2011 05:38:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=eCh7bL0LtJh+l0GSPzZrIhGlqdgap743xa9g81yGbvY=; b=ugDxIbRN6do46fq1y77C/ADB/W4niQYp3PRWWAf4uiqEW752H4Abb1Po4FDRkDA49V mkeRiSsQO5z04QIQnIRQ91FPEe++H2J0NkY5bnwvxSIZ8/yg3mih3rqy/f0tbBHiMexu 7oJ7S9+0GhgJIItcrzm3hDhEMn9T1xiE/IuC0= Received: by 10.216.144.100 with SMTP id m78mr1732766wej.55.1309437499264; Thu, 30 Jun 2011 05:38:19 -0700 (PDT) Received: from doriath.ww600.siemens.net ([91.213.169.4]) by mx.google.com with ESMTPS id b70sm1113562wek.44.2011.06.30.05.38.16 (version=SSLv3 cipher=OTHER); Thu, 30 Jun 2011 05:38:18 -0700 (PDT) From: Dmitry Eremin-Solenikov To: "David S. Miller" Cc: netdev@vger.kernel.org, Werner Almesberger Subject: [PATCH 5/5] IEEE 802.15.4: do not enable driver debugging by default Date: Thu, 30 Jun 2011 16:37:48 +0400 Message-Id: <1309437468-31021-6-git-send-email-dbaryshkov@gmail.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1309437468-31021-1-git-send-email-dbaryshkov@gmail.com> References: <1309437468-31021-1-git-send-email-dbaryshkov@gmail.com> Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Werner Almesberger The IEEE 802.15.4 drivers were compiled by default with debugging, which caused them to be rather chatty and slow. This patch silences them. People debugging drivers can still add a #define DEBUG in the beginning of the respective file or use dynamic debug This patch also removes the now unused option CONFIG_FFD. Signed-off-by: Werner Almesberger Signed-off-by: Dmitry Eremin-Solenikov --- drivers/ieee802154/Makefile | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/ieee802154/Makefile b/drivers/ieee802154/Makefile index 6899913..800a389 100644 --- a/drivers/ieee802154/Makefile +++ b/drivers/ieee802154/Makefile @@ -1,3 +1 @@ obj-$(CONFIG_IEEE802154_FAKEHARD) += fakehard.o - -ccflags-y := -DDEBUG -DCONFIG_FFD