summaryrefslogtreecommitdiff
path: root/drivers/net/ethernet/netronome/nfp/nfpcore/nfp_dev.h
blob: 514aa081022fbf391f104e39c4b4d2c239152fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
/* Copyright (C) 2019 Netronome Systems, Inc. */

#ifndef _NFP_DEV_H_
#define _NFP_DEV_H_

enum nfp_dev_id {
	NFP_DEV_NFP6000,
	NFP_DEV_CNT,
};

struct nfp_dev_info {
	const char *chip_names;
};

extern const struct nfp_dev_info nfp_dev_info[NFP_DEV_CNT];

#endif