diff options
Diffstat (limited to 'drivers/net/ethernet/lantiq_etop.c')
| -rw-r--r-- | drivers/net/ethernet/lantiq_etop.c | 12 | 
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/net/ethernet/lantiq_etop.c b/drivers/net/ethernet/lantiq_etop.c index bfdb0686039..fd4b6aecf6e 100644 --- a/drivers/net/ethernet/lantiq_etop.c +++ b/drivers/net/ethernet/lantiq_etop.c @@ -9,8 +9,7 @@   *   GNU General Public License for more details.   *   *   You should have received a copy of the GNU General Public License - *   along with this program; if not, write to the Free Software - *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + *   along with this program; if not, see <http://www.gnu.org/licenses/>.   *   *   Copyright (C) 2011 John Crispin <blogic@openwrt.org>   */ @@ -282,8 +281,7 @@ ltq_etop_hw_init(struct net_device *dev)  		if (IS_TX(i)) {  			ltq_dma_alloc_tx(&ch->dma); -			request_irq(irq, ltq_etop_dma_irq, IRQF_DISABLED, -				"etop_tx", priv); +			request_irq(irq, ltq_etop_dma_irq, 0, "etop_tx", priv);  		} else if (IS_RX(i)) {  			ltq_dma_alloc_rx(&ch->dma);  			for (ch->dma.desc = 0; ch->dma.desc < LTQ_DESC_NUM; @@ -291,8 +289,7 @@ ltq_etop_hw_init(struct net_device *dev)  				if (ltq_etop_alloc_skb(ch))  					return -ENOMEM;  			ch->dma.desc = 0; -			request_irq(irq, ltq_etop_dma_irq, IRQF_DISABLED, -				"etop_rx", priv); +			request_irq(irq, ltq_etop_dma_irq, 0, "etop_rx", priv);  		}  		ch->dma.irq = irq;  	} @@ -621,7 +618,8 @@ ltq_etop_set_multicast_list(struct net_device *dev)  }  static u16 -ltq_etop_select_queue(struct net_device *dev, struct sk_buff *skb) +ltq_etop_select_queue(struct net_device *dev, struct sk_buff *skb, +		      void *accel_priv, select_queue_fallback_t fallback)  {  	/* we are currently only using the first queue */  	return 0;  | 
