mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 00:06:36 +00: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>
10 lines
243 B
C
10 lines
243 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright(c) 2017 - 2019 Pensando Systems, Inc */
|
|
|
|
#ifndef _IONIC_BUS_H_
|
|
#define _IONIC_BUS_H_
|
|
|
|
int ionic_bus_register_driver(void);
|
|
void ionic_bus_unregister_driver(void);
|
|
|
|
#endif /* _IONIC_BUS_H_ */
|