/* SPDX-License-Identifier: GPL-2.0 */12/***************************************************************************3* copyright : (C) 2002 by Frank Mori Hess4***************************************************************************/56#include "nec7210.h"7#include "gpibP.h"8#include "plx9050.h"910struct cec_priv {11struct nec7210_priv nec7210_priv;12struct pci_dev *pci_device;13// base address for plx9052 pci chip14unsigned long plx_iobase;15unsigned int irq;16};1718// offset between consecutive nec7210 registers19static const int cec_reg_offset = 1;202122