From patchwork Mon Jan 12 01:05:02 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Krzysztof Halasa X-Patchwork-Id: 17867 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 0A194DE027 for ; Mon, 12 Jan 2009 12:05:11 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751997AbZALBFF (ORCPT ); Sun, 11 Jan 2009 20:05:05 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751916AbZALBFF (ORCPT ); Sun, 11 Jan 2009 20:05:05 -0500 Received: from khc.piap.pl ([195.187.100.11]:39040 "EHLO khc.piap.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751907AbZALBFE convert rfc822-to-8bit (ORCPT ); Sun, 11 Jan 2009 20:05:04 -0500 Received: by khc.piap.pl (Postfix, from userid 500) id A4BEE70190; Mon, 12 Jan 2009 02:05:02 +0100 (CET) To: David Miller Cc: Subject: [PATCH] Fix a comment in include/linux/netdevice.h. From: Krzysztof Halasa Date: Mon, 12 Jan 2009 02:05:02 +0100 Message-ID: MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Fix a comment in include/linux/netdevice.h. Signed-off-by: Krzysztof HaƂasa diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index f245568..4647604 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -467,7 +467,7 @@ struct netdev_queue { * This function is called when network device transistions to the down * state. * - * int (*ndo_hard_start_xmit)(struct sk_buff *skb, struct net_device *dev); + * int (*ndo_start_xmit)(struct sk_buff *skb, struct net_device *dev); * Called when a packet needs to be transmitted. * Must return NETDEV_TX_OK , NETDEV_TX_BUSY, or NETDEV_TX_LOCKED, * Required can not be NULL.