mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 23:14:31 +08:00
b1ca2f1b04
There are no external users of the vsc7514_*_regmap[] symbols or vsc7514_vcap_* functions. They were exported in commit32ecd22ba6
("net: mscc: ocelot: split register definitions to a separate file") with the intention of being used, but the actual structure used in commit2efaca411c
("net: mscc: ocelot: expose vsc7514_regmap definition") ended up being all that was needed. Bury these unnecessary symbols. Signed-off-by: Colin Foster <colin.foster@in-advantage.com> Suggested-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Link: https://lore.kernel.org/r/20230204182056.25502-1-colin.foster@in-advantage.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
20 lines
389 B
C
20 lines
389 B
C
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
|
|
/*
|
|
* Microsemi Ocelot Switch driver
|
|
*
|
|
* Copyright (c) 2021 Innovative Advantage Inc.
|
|
*/
|
|
|
|
#ifndef VSC7514_REGS_H
|
|
#define VSC7514_REGS_H
|
|
|
|
#include <soc/mscc/ocelot_vcap.h>
|
|
|
|
extern struct vcap_props vsc7514_vcap_props[];
|
|
|
|
extern const struct reg_field vsc7514_regfields[REGFIELD_MAX];
|
|
|
|
extern const u32 *vsc7514_regmap[TARGET_MAX];
|
|
|
|
#endif
|