|
@@ -313,11 +313,7 @@ static void restart(struct net_device *dev)
|
|
|
* Clear any outstanding interrupt.
|
|
|
*/
|
|
|
FW(fecp, ievent, 0xffc0);
|
|
|
-#ifndef CONFIG_PPC_MERGE
|
|
|
- FW(fecp, ivec, (fep->interrupt / 2) << 29);
|
|
|
-#else
|
|
|
FW(fecp, ivec, (virq_to_hw(fep->interrupt) / 2) << 29);
|
|
|
-#endif
|
|
|
|
|
|
/*
|
|
|
* adjust to speed (only for DUET & RMII)
|
|
@@ -413,30 +409,6 @@ static void stop(struct net_device *dev)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-static void pre_request_irq(struct net_device *dev, int irq)
|
|
|
-{
|
|
|
-#ifndef CONFIG_PPC_MERGE
|
|
|
- immap_t *immap = fs_enet_immap;
|
|
|
- u32 siel;
|
|
|
-
|
|
|
- /* SIU interrupt */
|
|
|
- if (irq >= SIU_IRQ0 && irq < SIU_LEVEL7) {
|
|
|
-
|
|
|
- siel = in_be32(&immap->im_siu_conf.sc_siel);
|
|
|
- if ((irq & 1) == 0)
|
|
|
- siel |= (0x80000000 >> irq);
|
|
|
- else
|
|
|
- siel &= ~(0x80000000 >> (irq & ~1));
|
|
|
- out_be32(&immap->im_siu_conf.sc_siel, siel);
|
|
|
- }
|
|
|
-#endif
|
|
|
-}
|
|
|
-
|
|
|
-static void post_free_irq(struct net_device *dev, int irq)
|
|
|
-{
|
|
|
- /* nothing */
|
|
|
-}
|
|
|
-
|
|
|
static void napi_clear_rx_event(struct net_device *dev)
|
|
|
{
|
|
|
struct fs_enet_private *fep = netdev_priv(dev);
|
|
@@ -529,8 +501,6 @@ const struct fs_ops fs_fec_ops = {
|
|
|
.set_multicast_list = set_multicast_list,
|
|
|
.restart = restart,
|
|
|
.stop = stop,
|
|
|
- .pre_request_irq = pre_request_irq,
|
|
|
- .post_free_irq = post_free_irq,
|
|
|
.napi_clear_rx_event = napi_clear_rx_event,
|
|
|
.napi_enable_rx = napi_enable_rx,
|
|
|
.napi_disable_rx = napi_disable_rx,
|