Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.4 19 lines 389 B view raw
1/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */ 2/* 3 * Microsemi Ocelot Switch driver 4 * 5 * Copyright (c) 2021 Innovative Advantage Inc. 6 */ 7 8#ifndef VSC7514_REGS_H 9#define VSC7514_REGS_H 10 11#include <soc/mscc/ocelot_vcap.h> 12 13extern struct vcap_props vsc7514_vcap_props[]; 14 15extern const struct reg_field vsc7514_regfields[REGFIELD_MAX]; 16 17extern const u32 *vsc7514_regmap[TARGET_MAX]; 18 19#endif