mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 07:23:14 +00:00
fd3040b939
Add driver for Sunplus SP7021 SoC. Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Wells Lu <wellslutw@gmail.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
20 lines
665 B
C
20 lines
665 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright Sunplus Technology Co., Ltd.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __SPL2SW_DESC_H__
|
|
#define __SPL2SW_DESC_H__
|
|
|
|
void spl2sw_rx_descs_flush(struct spl2sw_common *comm);
|
|
void spl2sw_tx_descs_clean(struct spl2sw_common *comm);
|
|
void spl2sw_rx_descs_clean(struct spl2sw_common *comm);
|
|
void spl2sw_descs_clean(struct spl2sw_common *comm);
|
|
void spl2sw_descs_free(struct spl2sw_common *comm);
|
|
void spl2sw_tx_descs_init(struct spl2sw_common *comm);
|
|
int spl2sw_rx_descs_init(struct spl2sw_common *comm);
|
|
int spl2sw_descs_alloc(struct spl2sw_common *comm);
|
|
int spl2sw_descs_init(struct spl2sw_common *comm);
|
|
|
|
#endif
|