skb->protocol = eth_type_trans(skb, netdev);
 
        /* checksum offload */
-       if (card->rx_csum) {
+       if (netdev->features & NETIF_F_RXCSUM) {
                if ((data_status & GELIC_DESCR_DATA_STATUS_CHK_MASK) &&
                    (!(data_error & GELIC_DESCR_DATA_ERROR_CHK_MASK)))
                        skb->ip_summed = CHECKSUM_UNNECESSARY;
        return 0;
 }
 
-u32 gelic_net_get_rx_csum(struct net_device *netdev)
-{
-       struct gelic_card *card = netdev_card(netdev);
-
-       return card->rx_csum;
-}
-
-int gelic_net_set_rx_csum(struct net_device *netdev, u32 data)
-{
-       struct gelic_card *card = netdev_card(netdev);
-
-       card->rx_csum = data;
-       return 0;
-}
-
 static void gelic_net_get_wol(struct net_device *netdev,
                              struct ethtool_wolinfo *wol)
 {
        .get_settings   = gelic_ether_get_settings,
        .set_settings   = gelic_ether_set_settings,
        .get_link       = ethtool_op_get_link,
-       .get_tx_csum    = ethtool_op_get_tx_csum,
-       .set_tx_csum    = ethtool_op_set_tx_csum,
-       .get_rx_csum    = gelic_net_get_rx_csum,
-       .set_rx_csum    = gelic_net_set_rx_csum,
        .get_wol        = gelic_net_get_wol,
        .set_wol        = gelic_net_set_wol,
 };
        int status;
        u64 v1, v2;
 
+       netdev->hw_features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
+
        netdev->features = NETIF_F_IP_CSUM;
+       if (GELIC_CARD_RX_CSUM_DEFAULT)
+               netdev->features |= NETIF_F_RXCSUM;
 
        status = lv1_net_control(bus_id(card), dev_id(card),
                                 GELIC_LV1_GET_MAC_ADDRESS,
        /* setup card structure */
        card->irq_mask = GELIC_CARD_RXINT | GELIC_CARD_TXINT |
                GELIC_CARD_PORT_STATUS_CHANGED;
-       card->rx_csum = GELIC_CARD_RX_CSUM_DEFAULT;
 
 
        if (gelic_card_init_chain(card, &card->tx_chain,
 
        struct gelic_descr_chain tx_chain;
        struct gelic_descr_chain rx_chain;
        int rx_dma_restart_required;
-       int rx_csum;
        /*
         * tx_lock guards tx descriptor list and
         * tx_dma_progress.
 /* shared ethtool ops */
 extern void gelic_net_get_drvinfo(struct net_device *netdev,
                                  struct ethtool_drvinfo *info);
-extern u32 gelic_net_get_rx_csum(struct net_device *netdev);
-extern int gelic_net_set_rx_csum(struct net_device *netdev, u32 data);
 extern void gelic_net_poll_controller(struct net_device *netdev);
 
 #endif /* _GELIC_NET_H */
 
 static const struct ethtool_ops gelic_wl_ethtool_ops = {
        .get_drvinfo    = gelic_net_get_drvinfo,
        .get_link       = gelic_wl_get_link,
-       .get_tx_csum    = ethtool_op_get_tx_csum,
-       .set_tx_csum    = ethtool_op_set_tx_csum,
-       .get_rx_csum    = gelic_net_get_rx_csum,
-       .set_rx_csum    = gelic_net_set_rx_csum,
 };
 
 static void __devinit gelic_wl_setup_netdev_ops(struct net_device *netdev)