mirror of
https://github.com/torvalds/linux.git
synced 2026-07-31 19:47:08 +02:00
Staging driver fixes for 6.13-rc3
Here are some small staging gpib driver build and bugfixes for issues that have been much-reported (should finally fix Guenter's build issues). There are more of these coming in later -rc releases, but for now this should fix the majority of the reported problems. All of these have been in linux-next for a while with no reported issues. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- iG0EABECAC0WIQT0tgzFv3jCIUoxPcsxR9QN2y37KQUCZ12WPQ8cZ3JlZ0Brcm9h aC5jb20ACgkQMUfUDdst+ylfwACgrG5/ZnXk/itH5OF0nQtFN1qJ6MQAn3ukxI8D PcUjyRSWy+WhrvDP+bx5 =DrPI -----END PGP SIGNATURE----- Merge tag 'staging-6.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging Pull staging driver fixes from Greg KH: "Here are some small staging gpib driver build and bugfixes for issues that have been much-reported (should finally fix Guenter's build issues). There are more of these coming in later -rc releases, but for now this should fix the majority of the reported problems. All of these have been in linux-next for a while with no reported issues" * tag 'staging-6.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: staging: gpib: Fix i386 build issue staging: gpib: Fix faulty workaround for assignment in if staging: gpib: Workaround for ppc build failure staging: gpib: Make GPIB_NI_PCI_ISA depend on HAS_IOPORT
This commit is contained in:
commit
3de4f6d919
|
|
@ -50,6 +50,7 @@ config GPIB_CEC_PCI
|
|||
tristate "CEC PCI board"
|
||||
depends on PCI
|
||||
depends on HAS_IOPORT
|
||||
depends on !X86_PAE
|
||||
select GPIB_COMMON
|
||||
select GPIB_NEC7210
|
||||
help
|
||||
|
|
@ -62,6 +63,8 @@ config GPIB_CEC_PCI
|
|||
config GPIB_NI_PCI_ISA
|
||||
tristate "NI PCI/ISA compatible boards"
|
||||
depends on ISA_BUS || PCI || PCMCIA
|
||||
depends on HAS_IOPORT
|
||||
depends on !X86_PAE
|
||||
select GPIB_COMMON
|
||||
select GPIB_NEC7210
|
||||
help
|
||||
|
|
@ -85,6 +88,7 @@ config GPIB_CB7210
|
|||
tristate "Measurement Computing compatible boards"
|
||||
depends on HAS_IOPORT
|
||||
depends on ISA_BUS || PCI || PCMCIA
|
||||
depends on !X86_PAE
|
||||
select GPIB_COMMON
|
||||
select GPIB_NEC7210
|
||||
help
|
||||
|
|
@ -128,7 +132,7 @@ config GPIB_FMH
|
|||
tristate "FMH FPGA based devices"
|
||||
select GPIB_COMMON
|
||||
select GPIB_NEC7210
|
||||
depends on BROKEN
|
||||
depends on !PPC
|
||||
depends on OF && PCI
|
||||
help
|
||||
GPIB driver for fmhess FPGA based devices
|
||||
|
|
@ -174,6 +178,7 @@ config GPIB_INES
|
|||
tristate "INES"
|
||||
depends on PCI || ISA_BUS || PCMCIA
|
||||
depends on HAS_IOPORT
|
||||
depends on !X86_PAE
|
||||
select GPIB_COMMON
|
||||
select GPIB_NEC7210
|
||||
help
|
||||
|
|
|
|||
|
|
@ -901,7 +901,7 @@ static int usb_gpib_read(gpib_board_t *board,
|
|||
|
||||
} else {
|
||||
/* we are in the closing <DLE><ETX> sequence */
|
||||
|
||||
c = nc;
|
||||
if (c == ETX) {
|
||||
c = one_char(board, &b);
|
||||
if (c == ACK) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user