-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
staging: gpib: Add nec7210 GPIB chip driver
Low level Chip driver for NEC7210 and compatible based boards. Signed-off-by: Dave Penkler <dpenkler@gmail.com> Link: https://lore.kernel.org/r/20240918121908.19366-8-dpenkler@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Dave Penkler
authored and
Greg Kroah-Hartman
committed
Oct 10, 2024
1 parent
add452d
commit 3ba84ac
Showing
3 changed files
with
1,154 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
obj-m += nec7210.o | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
|
||
/*************************************************************************** | ||
* copyright : (C) 2001, 2002 by Frank Mori Hess | ||
***************************************************************************/ | ||
|
||
#ifndef _GPIB_PCIIA_BOARD_H | ||
#define _GPIB_PCIIA_BOARD_H | ||
|
||
#include "gpibP.h" | ||
#include <linux/io.h> | ||
#include <linux/module.h> | ||
#include <linux/sched.h> | ||
#include <linux/delay.h> | ||
|
||
#include "nec7210.h" | ||
|
||
#endif //_GPIB_PCIIA_BOARD_H | ||
|
Oops, something went wrong.