From patchwork Thu Sep 17 00:07:39 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jean-Christophe PLAGNIOL-VILLARD X-Patchwork-Id: 33751 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.176.167]) by ozlabs.org (Postfix) with ESMTP id 8DC2CB7B71 for ; Thu, 17 Sep 2009 10:09:18 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750913AbZIQAJH (ORCPT ); Wed, 16 Sep 2009 20:09:07 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750805AbZIQAJH (ORCPT ); Wed, 16 Sep 2009 20:09:07 -0400 Received: from 30.mail-out.ovh.net ([213.186.62.213]:45524 "HELO 30.mail-out.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1750759AbZIQAJG (ORCPT ); Wed, 16 Sep 2009 20:09:06 -0400 Received: (qmail 1845 invoked by uid 503); 17 Sep 2009 00:09:17 -0000 Received: from b7.ovh.net (HELO mail439.ha.ovh.net) (213.186.33.57) by 30.mail-out.ovh.net with SMTP; 17 Sep 2009 00:09:17 -0000 Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 17 Sep 2009 00:09:10 -0000 Received: from ns24789.ovh.net (HELO localhost) (plagnioj%jcrosoft.com@91.121.24.14) by ns0.ovh.net with SMTP; 17 Sep 2009 00:09:10 -0000 From: Jean-Christophe PLAGNIOL-VILLARD To: netdev@vger.kernel.org Cc: Jean-Christophe PLAGNIOL-VILLARD Subject: [PATCH 2/2] net: remove print_mac as it's not anymore used Date: Thu, 17 Sep 2009 02:07:39 +0200 Message-Id: <1253146059-4169-2-git-send-email-plagnioj@jcrosoft.com> X-Mailer: git-send-email 1.6.4 In-Reply-To: <1253146059-4169-1-git-send-email-plagnioj@jcrosoft.com> References: <1253146059-4169-1-git-send-email-plagnioj@jcrosoft.com> X-Ovh-Tracer-Id: 9089952899157830560 X-Ovh-Remote: 91.121.24.14 (ns24789.ovh.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-Spam-Check: DONE|U 0.5/N Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- include/linux/if_ether.h | 8 -------- net/ethernet/eth.c | 7 ------- 2 files changed, 0 insertions(+), 15 deletions(-) diff --git a/include/linux/if_ether.h b/include/linux/if_ether.h index 580b600..b1a19a7 100644 --- a/include/linux/if_ether.h +++ b/include/linux/if_ether.h @@ -136,14 +136,6 @@ extern struct ctl_table ether_table[]; extern ssize_t sysfs_format_mac(char *buf, const unsigned char *addr, int len); -/* - * Display a 6 byte device address (MAC) in a readable format. - */ -extern char *print_mac(char *buf, const unsigned char *addr) __deprecated; -#define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x" -#define MAC_BUF_SIZE 18 -#define DECLARE_MAC_BUF(var) char var[MAC_BUF_SIZE] - #endif #endif /* _LINUX_IF_ETHER_H */ diff --git a/net/ethernet/eth.c b/net/ethernet/eth.c index 5a883af..dd3db88 100644 --- a/net/ethernet/eth.c +++ b/net/ethernet/eth.c @@ -393,10 +393,3 @@ ssize_t sysfs_format_mac(char *buf, const unsigned char *addr, int len) return ((ssize_t) l); } EXPORT_SYMBOL(sysfs_format_mac); - -char *print_mac(char *buf, const unsigned char *addr) -{ - _format_mac_addr(buf, MAC_BUF_SIZE, addr, ETH_ALEN); - return buf; -} -EXPORT_SYMBOL(print_mac);