Re: [PATCH] scsi: ultrastor.c depends on ISA_DMA_API

2016-05-19 Thread William Breathitt Gray
On Thu, May 19, 2016 at 02:53:35PM -0400, William Breathitt Gray wrote: >Although request_dma and free_dma are conditionally dependent on >CONFIG_ISA_DMA_API inside the arch/x86/include/asm/dma.h file, they are >defined inside the kernel/dma.c file which depends on >CONFIG_GENERIC_ISA_

Re: [PATCH] scsi: ultrastor.c depends on ISA_DMA_API

2016-05-19 Thread William Breathitt Gray
e_dma are conditionally dependent on CONFIG_ISA_DMA_API inside the arch/x86/include/asm/dma.h file, they are defined inside the kernel/dma.c file which depends on CONFIG_GENERIC_ISA_DMA in order to build on X86. Therefore, GENERIC_ISA_DMA should be in the depends line for SCSI_ULTRASTOR instead of ISA_DMA

Re: [PATCH RESEND] scsi: ultrastor: Use correct format identifier for kernel pointer

2016-05-01 Thread William Breathitt Gray
On Sun, May 01, 2016 at 04:08:25PM -0700, James Bottomley wrote: >On Sun, 2016-05-01 at 17:57 -0400, William Breathitt Gray wrote: >> The 'bios_segment' member of a struct ultrastor_config is passed to the >> sprintf function with a respective %05X format identifier. The >>

[PATCH RESEND] scsi: ultrastor: Use correct format identifier for kernel pointer

2016-05-01 Thread William Breathitt Gray
. Signed-off-by: William Breathitt Gray <vilhelm.g...@gmail.com> --- drivers/scsi/ultrastor.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/ultrastor.c b/drivers/scsi/ultrastor.c index 14e0c40..2e99f98 100644 --- a/drivers/scsi/ultrastor.c +++ b/driver

[PATCH RESEND] scsi: ultrastor: Use correct format identifier for kernel pointer

2016-05-01 Thread William Breathitt Gray
. Signed-off-by: William Breathitt Gray <vilhelm.g...@gmail.com> --- drivers/scsi/ultrastor.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/ultrastor.c b/drivers/scsi/ultrastor.c index 14e0c40..2e99f98 100644 --- a/drivers/scsi/ultrastor.c +++ b/driver

Re: [PATCH 0/4] Decouple X86_32 dependency from the ISA Kconfig option

2016-05-01 Thread William Breathitt Gray
On Wed, Apr 13, 2016 at 08:18:26AM -0700, Greg KH wrote: >On Wed, Apr 13, 2016 at 10:48:42AM -0400, William Breathitt Gray wrote: >> On Wed, Apr 13, 2016 at 04:38:38PM +0200, Ingo Molnar wrote: >> >Ah, ok, so it's for enabling real hardware, not just a cleanup, right? You &

Re: [PATCH 1/4] pnp: pnpbios: Add explicit X86_32 dependency to PNPBIOS

2016-05-01 Thread William Breathitt Gray
On Sat, Apr 23, 2016 at 01:51:19AM +0200, Rafael J. Wysocki wrote: >On 4/11/2016 3:25 PM, William Breathitt Gray wrote: >> The PNPBIOS driver requires preprocessor defines (located in >> include/asm/segment.h) only declared if the architecture is set to >> X86_32. If th

Re: [PATCH 1/4] pnp: pnpbios: Add explicit X86_32 dependency to PNPBIOS

2016-04-23 Thread William Breathitt Gray
On Sat, Apr 23, 2016 at 01:51:19AM +0200, Rafael J. Wysocki wrote: >On 4/11/2016 3:25 PM, William Breathitt Gray wrote: >> The PNPBIOS driver requires preprocessor defines (located in >> include/asm/segment.h) only declared if the architecture is set to >> X86_32. If th

Re: [PATCH 0/4] Decouple X86_32 dependency from the ISA Kconfig option

2016-04-13 Thread William Breathitt Gray
oversight on my part not to have made it more explicit. Introducing everything to the driver tree would be most convenient, thus allowing me to quickly release my subsequent patches which will be rebased on top of these. William Breathitt Gray -- To unsubscribe from this list: send the line &quo

Re: [PATCH 0/4] Decouple X86_32 dependency from the ISA Kconfig option

2016-04-13 Thread William Breathitt Gray
iver, the ACCES 104-IDI-48 GPIO driver, the ACCES 104-IDIO-16 GPIO driver, and the Apex Embedded Systems STX104 DAC driver. I have several more PC/104 devices for which I wish to write drivers, but I would like to resolve this ISA bus driver situation before submitting new code. William

[PATCH 2/4] sound: isa: sscape: Use correct format identifier for size_t

2016-04-11 Thread William Breathitt Gray
identifier for size_t data types. Cc: Jaroslav Kysela <pe...@perex.cz> Cc: Takashi Iwai <ti...@suse.com> Signed-off-by: William Breathitt Gray <vilhelm.g...@gmail.com> --- sound/isa/sscape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/isa/sscape.c b/sound/

[PATCH 0/4] Decouple X86_32 dependency from the ISA Kconfig option

2016-04-11 Thread William Breathitt Gray
t, let me know and I will rebase to remove the relevant patches. William Breathitt Gray (4): pnp: pnpbios: Add explicit X86_32 dependency to PNPBIOS sound: isa: sscape: Use correct format identifier for size_t scsi: ultrastor: Use correct format identifier for kernel pointer isa: Remove the IS

[PATCH 3/4] scsi: ultrastor: Use correct format identifier for kernel pointer

2016-04-11 Thread William Breathitt Gray
: James E.J. Bottomley <j...@linux.vnet.ibm.com> Cc: Martin K. Petersen <martin.peter...@oracle.com> Signed-off-by: William Breathitt Gray <vilhelm.g...@gmail.com> --- drivers/scsi/ultrastor.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/

[PATCH 4/4] isa: Remove the ISA_BUS Kconfig option

2016-04-11 Thread William Breathitt Gray
and removes the X86_32 dependency from the ISA configuration option. Signed-off-by: William Breathitt Gray <vilhelm.g...@gmail.com> --- arch/x86/Kconfig | 10 ++ drivers/base/Makefile | 2 +- include/linux/isa.h | 2 +- 3 files changed, 4 insertions(+), 10 deletions(-)

[PATCH 1/4] pnp: pnpbios: Add explicit X86_32 dependency to PNPBIOS

2016-04-11 Thread William Breathitt Gray
X86_32 dependency in order to prevent an attempt to build for an unsupported architecture. Cc: Rafael J. Wysocki <rafael.j.wyso...@intel.com> Signed-off-by: William Breathitt Gray <vilhelm.g...@gmail.com> --- drivers/pnp/pnpbios/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 delet