mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-17 22:23:45 -04:00
This patch adds a basic driver framework for the Pensando IONIC network device. There is no functionality right now other than the ability to load and unload. Signed-off-by: Shannon Nelson <snelson@pensando.io> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
305 B
C
13 lines
305 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright(c) 2017 - 2019 Pensando Systems, Inc */
|
|
|
|
#ifndef _IONIC_DEVLINK_H_
|
|
#define _IONIC_DEVLINK_H_
|
|
|
|
#include <net/devlink.h>
|
|
|
|
struct ionic *ionic_devlink_alloc(struct device *dev);
|
|
void ionic_devlink_free(struct ionic *ionic);
|
|
|
|
#endif /* _IONIC_DEVLINK_H_ */
|