Skip to content

Commit 3de4f6d

Browse files
committed
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
2 parents ec20929 + 48e8a81 commit 3de4f6d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

drivers/staging/gpib/Kconfig

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ config GPIB_CEC_PCI
5050
tristate "CEC PCI board"
5151
depends on PCI
5252
depends on HAS_IOPORT
53+
depends on !X86_PAE
5354
select GPIB_COMMON
5455
select GPIB_NEC7210
5556
help
@@ -62,6 +63,8 @@ config GPIB_CEC_PCI
6263
config GPIB_NI_PCI_ISA
6364
tristate "NI PCI/ISA compatible boards"
6465
depends on ISA_BUS || PCI || PCMCIA
66+
depends on HAS_IOPORT
67+
depends on !X86_PAE
6568
select GPIB_COMMON
6669
select GPIB_NEC7210
6770
help
@@ -85,6 +88,7 @@ config GPIB_CB7210
8588
tristate "Measurement Computing compatible boards"
8689
depends on HAS_IOPORT
8790
depends on ISA_BUS || PCI || PCMCIA
91+
depends on !X86_PAE
8892
select GPIB_COMMON
8993
select GPIB_NEC7210
9094
help
@@ -128,7 +132,7 @@ config GPIB_FMH
128132
tristate "FMH FPGA based devices"
129133
select GPIB_COMMON
130134
select GPIB_NEC7210
131-
depends on BROKEN
135+
depends on !PPC
132136
depends on OF && PCI
133137
help
134138
GPIB driver for fmhess FPGA based devices
@@ -174,6 +178,7 @@ config GPIB_INES
174178
tristate "INES"
175179
depends on PCI || ISA_BUS || PCMCIA
176180
depends on HAS_IOPORT
181+
depends on !X86_PAE
177182
select GPIB_COMMON
178183
select GPIB_NEC7210
179184
help

drivers/staging/gpib/lpvo_usb_gpib/lpvo_usb_gpib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ static int usb_gpib_read(gpib_board_t *board,
901901

902902
} else {
903903
/* we are in the closing <DLE><ETX> sequence */
904-
904+
c = nc;
905905
if (c == ETX) {
906906
c = one_char(board, &b);
907907
if (c == ACK) {

0 commit comments

Comments
 (0)