From patchwork Fri Mar 27 01:11:31 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 25202 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 64A84DDDA1 for ; Fri, 27 Mar 2009 12:30:35 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1762547AbZC0Bab (ORCPT ); Thu, 26 Mar 2009 21:30:31 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761503AbZC0Baa (ORCPT ); Thu, 26 Mar 2009 21:30:30 -0400 Received: from suva.vyatta.com ([76.74.103.44]:49171 "EHLO suva.vyatta.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759385AbZC0Ba3 (ORCPT ); Thu, 26 Mar 2009 21:30:29 -0400 Received: from suva.vyatta.com (suva [127.0.0.1]) by suva.vyatta.com (8.13.7/8.13.7) with ESMTP id n2R1UHUc017298; Thu, 26 Mar 2009 18:30:17 -0700 Received: (from shemminger@localhost) by suva.vyatta.com (8.13.7/8.13.7/Submit) id n2R1Tvlx017293; Thu, 26 Mar 2009 18:29:57 -0700 Message-Id: <20090327011256.174148808@linux-foundation.org> User-Agent: quilt/0.47-1 Date: Thu, 26 Mar 2009 18:11:31 -0700 From: Stephen Hemminger To: David Miller Cc: netdev@vger.kernel.org Subject: [patch 17/30] netdev: smc-ultra fix netpoll References: <20090327011114.169107105@linux-foundation.org> Content-Disposition: inline; filename=smc-ultra.patch Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org net_device_ops conversion left the wrong poll_controller hook. Signed-off-by: Stephen Hemminger --- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- a/drivers/net/smc-ultra.c 2009-03-26 15:59:56.000000000 -0700 +++ b/drivers/net/smc-ultra.c 2009-03-26 16:09:01.923594547 -0700 @@ -196,7 +196,7 @@ static const struct net_device_ops ultra .ndo_set_mac_address = eth_mac_addr, .ndo_change_mtu = eth_change_mtu, #ifdef CONFIG_NET_POLL_CONTROLLER - .ndo_poll_controller = ei_poll, + .ndo_poll_controller = ultra_poll, #endif };