// SPDX-License-Identifier: GPL-2.0-or-later /* * Applied Micro X-Gene SoC Ethernet v2 Driver * * Copyright (c) 2017, Applied Micro Circuits Corporation * Author(s): Iyappan Subramanian <[email protected]> * Keyur Chudgar <[email protected]> */ #include "main.h" /* create circular linked list of descriptors */ void xge_setup_desc(struct xge_desc_ring *ring) { … } void xge_update_tx_desc_addr(struct xge_pdata *pdata) { … } void xge_update_rx_desc_addr(struct xge_pdata *pdata) { … } void xge_intr_enable(struct xge_pdata *pdata) { … } void xge_intr_disable(struct xge_pdata *pdata) { … }