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.19-rc8 20 lines 571 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3/*************************************************************************** 4 * copyright : (C) 2002 by Frank Mori Hess 5 ***************************************************************************/ 6 7#include "nec7210.h" 8#include "gpibP.h" 9#include "plx9050.h" 10 11struct cec_priv { 12 struct nec7210_priv nec7210_priv; 13 struct pci_dev *pci_device; 14 // base address for plx9052 pci chip 15 unsigned long plx_iobase; 16 unsigned int irq; 17}; 18 19// offset between consecutive nec7210 registers 20static const int cec_reg_offset = 1;