mirror of https://gitee.com/openkylin/linux.git
staging: comedi: adl_pci9111: remove pci9111_trigger_and_autoscan_[sg]et macros
These macros rely on a local variable having a specific name. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2959bc21ba
commit
20614d96f0
|
@ -99,7 +99,7 @@ a multiple of chanlist_len*convert_arg.
|
||||||
#define PCI9111_REGISTER_AD_CHANNEL_READBACK 0x06
|
#define PCI9111_REGISTER_AD_CHANNEL_READBACK 0x06
|
||||||
#define PCI9111_AI_RANGE_REG 0x08
|
#define PCI9111_AI_RANGE_REG 0x08
|
||||||
#define PCI9111_RANGE_STATUS_REG 0x08
|
#define PCI9111_RANGE_STATUS_REG 0x08
|
||||||
#define PCI9111_REGISTER_TRIGGER_MODE_CONTROL 0x0A
|
#define PCI9111_AI_MODE_CTRL_REG 0x0A
|
||||||
#define PCI9111_AI_MODE_INT_RB_REG 0x0A
|
#define PCI9111_AI_MODE_INT_RB_REG 0x0A
|
||||||
#define PCI9111_SOFTWARE_TRIGGER_REG 0x0E
|
#define PCI9111_SOFTWARE_TRIGGER_REG 0x0E
|
||||||
#define PCI9111_INT_CTRL_REG 0x0C
|
#define PCI9111_INT_CTRL_REG 0x0C
|
||||||
|
@ -133,12 +133,6 @@ a multiple of chanlist_len*convert_arg.
|
||||||
* Define inlined function
|
* Define inlined function
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define pci9111_trigger_and_autoscan_get() \
|
|
||||||
(inb(dev->iobase + PCI9111_AI_MODE_INT_RB_REG)&0x0F)
|
|
||||||
|
|
||||||
#define pci9111_trigger_and_autoscan_set(flags) \
|
|
||||||
outb(flags, dev->iobase + PCI9111_REGISTER_TRIGGER_MODE_CONTROL)
|
|
||||||
|
|
||||||
#define pci9111_fifo_reset() do { \
|
#define pci9111_fifo_reset() do { \
|
||||||
outb(PCI9111_FFEN_SET_FIFO_ENABLE, \
|
outb(PCI9111_FFEN_SET_FIFO_ENABLE, \
|
||||||
dev->iobase + PCI9111_INT_CTRL_REG); \
|
dev->iobase + PCI9111_INT_CTRL_REG); \
|
||||||
|
@ -256,7 +250,10 @@ static void pci9111_trigger_source_set(struct comedi_device *dev,
|
||||||
{
|
{
|
||||||
int flags;
|
int flags;
|
||||||
|
|
||||||
flags = pci9111_trigger_and_autoscan_get() & 0x09;
|
/* Read the current trigger mode control bits */
|
||||||
|
flags = inb(dev->iobase + PCI9111_AI_MODE_INT_RB_REG);
|
||||||
|
/* Mask off the EITS and TPST bits */
|
||||||
|
flags &= 0x9;
|
||||||
|
|
||||||
switch (source) {
|
switch (source) {
|
||||||
case software:
|
case software:
|
||||||
|
@ -272,31 +269,37 @@ static void pci9111_trigger_source_set(struct comedi_device *dev,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
pci9111_trigger_and_autoscan_set(flags);
|
outb(flags, dev->iobase + PCI9111_AI_MODE_CTRL_REG);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pci9111_pretrigger_set(struct comedi_device *dev, bool pretrigger)
|
static void pci9111_pretrigger_set(struct comedi_device *dev, bool pretrigger)
|
||||||
{
|
{
|
||||||
int flags;
|
int flags;
|
||||||
|
|
||||||
flags = pci9111_trigger_and_autoscan_get() & 0x07;
|
/* Read the current trigger mode control bits */
|
||||||
|
flags = inb(dev->iobase + PCI9111_AI_MODE_INT_RB_REG);
|
||||||
|
/* Mask off the PTRG bit */
|
||||||
|
flags &= 0x7;
|
||||||
|
|
||||||
if (pretrigger)
|
if (pretrigger)
|
||||||
flags |= PCI9111_PTRG_ON;
|
flags |= PCI9111_PTRG_ON;
|
||||||
|
|
||||||
pci9111_trigger_and_autoscan_set(flags);
|
outb(flags, dev->iobase + PCI9111_AI_MODE_CTRL_REG);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pci9111_autoscan_set(struct comedi_device *dev, bool autoscan)
|
static void pci9111_autoscan_set(struct comedi_device *dev, bool autoscan)
|
||||||
{
|
{
|
||||||
int flags;
|
int flags;
|
||||||
|
|
||||||
flags = pci9111_trigger_and_autoscan_get() & 0x0e;
|
/* Read the current trigger mode control bits */
|
||||||
|
flags = inb(dev->iobase + PCI9111_AI_MODE_INT_RB_REG);
|
||||||
|
/* Mask off the ASCAN bit */
|
||||||
|
flags &= 0xe;
|
||||||
|
|
||||||
if (autoscan)
|
if (autoscan)
|
||||||
flags |= PCI9111_ASCAN_ON;
|
flags |= PCI9111_ASCAN_ON;
|
||||||
|
|
||||||
pci9111_trigger_and_autoscan_set(flags);
|
outb(flags, dev->iobase + PCI9111_AI_MODE_CTRL_REG);
|
||||||
}
|
}
|
||||||
|
|
||||||
enum pci9111_ISC0_sources {
|
enum pci9111_ISC0_sources {
|
||||||
|
|
Loading…
Reference in New Issue