[PATCH] scsi: replace broken specification URL

2016-09-15 Thread Michael Opdenacker
The t10.org website containing SCSI-2 draft specifications now requires to be from a member company to access the documents. Signed-off-by: Michael Opdenacker --- Documentation/DocBook/scsi.tmpl | 6 +++--- drivers/scsi/scsicam.c | 3 ++- 2 files changed, 5 insertions(+), 4 deletions

Re: [PATCH] scsi: replace broken specification URL

2016-09-15 Thread Michael Opdenacker
atch to send, to get rid of the broken link :) Thanks, Michael. -- Michael Opdenacker, CEO, Free Electrons Embedded Linux and Kernel engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majord..

Re: [PATCH] scsi: replace broken specification URL

2016-09-09 Thread Michael Opdenacker
Hi James, Thank you very much for your help... On 02/07/2016 16:49, James Bottomley wrote: On Sat, 2016-07-02 at 08:56 +0200, Michael Opdenacker wrote: The t10.org website containing SCSI-2 draft specifications now requires to be from a member company to access the documents. This replaces

[PATCH] scsi: replace broken specification URL

2016-07-01 Thread Michael Opdenacker
The t10.org website containing SCSI-2 draft specifications now requires to be from a member company to access the documents. This replaces the now broken link with another public resource where the specifications can be found. Signed-off-by: Michael Opdenacker --- Documentation/DocBook

[PATCH] [RESEND][SCSI] ips: remove unused defines

2015-03-26 Thread Michael Opdenacker
This patch removes unused defines from drivers/scsi/ips.h - the min() macro is not used - the __iomem define is no longer needed to compile ips.c without warnings Signed-off-by: Michael Opdenacker --- drivers/scsi/ips.h | 8 1 file changed, 8 deletions(-) diff --git a/drivers/scsi

[PATCH] [RESEND] aic7xxx: replace kmalloc/memset by kzalloc

2015-03-26 Thread Michael Opdenacker
This replaces kmalloc + memset by a call to kzalloc This also fixes one checkpatch.pl issue in the process. This improvement was suggested by "make coccicheck" Signed-off-by: Michael Opdenacker Reviewed-by: Hannes Reinecke --- drivers/scsi/aic7xxx/aic79xx_core.c | 3 +-- dr

Re: [PATCH] [RESEND] aic7xxx: replace kmalloc/memset by kzalloc

2015-03-26 Thread Michael Opdenacker
rns a run-time error. Ok, I hope we agree to get back to kzalloc() for which the compiler won't miss size_t overflows. Thanks for the reviews! Michael. -- Michael Opdenacker, CEO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com +33 484 258 098 -- To unsubsc

Re: [PATCH] [RESEND] aic7xxx: replace kmalloc/memset by kzalloc

2015-03-24 Thread Michael Opdenacker
Hi, On 03/22/2015 11:59 PM, Hannes Reinecke wrote: > On 03/22/2015 05:31 PM, Michael Opdenacker wrote: >> This replaces kmalloc + memset by a call to kzalloc >> (or kcalloc when appropriate, which zeroes memory too) >> >> This also fixes one checkpatch.pl issue

[PATCH] [RESEND] aic7xxx: replace kmalloc/memset by kzalloc

2015-03-22 Thread Michael Opdenacker
This replaces kmalloc + memset by a call to kzalloc (or kcalloc when appropriate, which zeroes memory too) This also fixes one checkpatch.pl issue in the process. This improvement was suggested by "make coccicheck" Signed-off-by: Michael Opdenacker --- drivers/scsi/aic7xxx/aic79xx_c

Re: [PATCH] aic7xxx: replace kmalloc/memset by kzalloc

2014-10-16 Thread Michael Opdenacker
Hi Joe, On 10/16/2014 09:28 PM, Joe Perches wrote: > On Thu, 2014-10-16 at 21:14 +0200, Michael Opdenacker wrote: > > > /* Allocate SCB resources */ > - scb_data->scbarray = kmalloc(sizeof(struct scb) * AHC_SCB_MAX_ALLOC, > GFP_ATOMIC); > + scb_data-&g

[PATCH] aic7xxx: replace kmalloc/memset by kzalloc

2014-10-16 Thread Michael Opdenacker
This replaces kmalloc + memset by a call to kzalloc. This also fixes one checkpatch.pl issue in the process. This improvement was suggested by "make coccicheck" Signed-off-by: Michael Opdenacker --- drivers/scsi/aic7xxx/aic79xx_core.c | 3 +-- drivers/scsi/aic7xxx/aic79xx_o

[PATCH] [RESEND] [SCSI] misc drivers: remove deprecated IRQF_DISABLED

2014-03-18 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag in several drivers in drivers/scsi/ It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/dtc.c| 2 +- drivers/scsi/esas2r/esas2r_init.c | 2 +- drivers/scsi/g_NCR5

[PATCH] [RESEND] [SCSI] wd7000: remove deprecated IRQF_DISABLED

2014-03-18 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/wd7000.c It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/wd7000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/wd700

[PATCH] [RESEND] [SCSI] u14-34f: remove deprecated IRQF_DISABLED

2014-03-18 Thread Michael Opdenacker
This patch removes the the use of the IRQF_DISABLED flag from drivers/scsi/u14-34f.c It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/u14-34f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/u14-

[PATCH] [RESEND] [SCSI] ibmvstgt: remove deprecated IRQF_DISABLED

2014-03-18 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/ibmvscsi/ibmvstgt.c It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/ibmvscsi/ibmvstgt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dr

[PATCH] [RESEND] [SCSI] eata: remove deprecated IRQF_DISABLED

2014-03-18 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/eata* It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/eata.c | 2 +- drivers/scsi/eata_pio.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)

[PATCH] [RESEND] [SCSI] aic7xxx: remove duplicate define

2014-03-18 Thread Michael Opdenacker
Remove duplicate define in drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h Signed-off-by: Michael Opdenacker Acked-by: Hannes Reinecke --- drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h b/drivers

[PATCH] [RESEND] [SCSI] aha152x: remove deprecated IRQF_DISABLED

2014-03-18 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/aha152x.c It's a NOOP since 2.6.35 and it will be removed one day. Also taking the opportunity to fix checkpatch issues on the lines I modified Signed-off-by: Michael Opdenacker --- drivers/scsi/aha152x.c | 4 ++-- 1

[PATCH] [RESEND] [SCSI] aacraid: remove deprecated IRQF_DISABLED

2014-03-18 Thread Michael Opdenacker
This patch removes the use of IRQF_DISABLED from code in drivers/scsi/aacraid/ It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/aacraid/rx.c | 2 +- drivers/scsi/aacraid/sa.c | 3 +-- drivers/scsi/aacraid/src.c | 4 ++-- 3

[PATCH] [RESEND] [SCSI] NCR5380: remove deprecated IRQF_DISABLED

2014-03-18 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/NCR5380.c It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/NCR5380.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/NCR538

Re: [PATCH] [RESEND] [SCSI] misc drivers: remove deprecated IRQF_DISABLED

2014-03-17 Thread Michael Opdenacker
Hi, On 03/05/2014 06:45 AM, Michael Opdenacker wrote: > This patch removes the use of the IRQF_DISABLED flag > in several drivers in drivers/scsi/ > > It's a NOOP since 2.6.35 and it will be removed one day. > > Signed-off-by: Michael Opdenacker > --- > drivers/

[PATCH] [RESEND][SCSI] ips: remove unused defines

2014-03-07 Thread Michael Opdenacker
This patch removes unused defines from drivers/scsi/ips.h - the min() macro is not used - the __iomem define is no longer needed to compile ips.c without warnings Signed-off-by: Michael Opdenacker --- drivers/scsi/ips.h | 8 1 file changed, 8 deletions(-) diff --git a/drivers/scsi

[PATCH] [RESEND] [SCSI] misc drivers: remove deprecated IRQF_DISABLED

2014-03-04 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag in several drivers in drivers/scsi/ It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/dtc.c| 2 +- drivers/scsi/esas2r/esas2r_init.c | 2 +- drivers/scsi/g_NCR5

[PATCH] [RESEND] [SCSI] wd7000: remove deprecated IRQF_DISABLED

2014-03-04 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/wd7000.c It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/wd7000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/wd700

[PATCH] [RESEND] [SCSI] u14-34f: remove deprecated IRQF_DISABLED

2014-03-04 Thread Michael Opdenacker
This patch removes the the use of the IRQF_DISABLED flag from drivers/scsi/u14-34f.c It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/u14-34f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/u14-

[PATCH] [RESEND] [SCSI] ibmvstgt: remove deprecated IRQF_DISABLED

2014-03-04 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/ibmvscsi/ibmvstgt.c It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/ibmvscsi/ibmvstgt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dr

[PATCH] [RESEND] [SCSI] eata: remove deprecated IRQF_DISABLED

2014-03-04 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/eata* It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/eata.c | 2 +- drivers/scsi/eata_pio.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)

[PATCH] [RESEND] [SCSI] aic7xxx: remove duplicate define

2014-03-04 Thread Michael Opdenacker
Remove duplicate define in drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h Signed-off-by: Michael Opdenacker Acked-by: Hannes Reinecke --- drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h b/drivers

[PATCH] [RESEND] [SCSI] aha152x: remove deprecated IRQF_DISABLED

2014-03-04 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/aha152x.c It's a NOOP since 2.6.35 and it will be removed one day. Also taking the opportunity to fix checkpatch issues on the lines I modified Signed-off-by: Michael Opdenacker --- drivers/scsi/aha152x.c | 4 ++-- 1

[PATCH] [RESEND] [SCSI] aacraid: remove deprecated IRQF_DISABLED

2014-03-04 Thread Michael Opdenacker
This patch removes the use of IRQF_DISABLED from code in drivers/scsi/aacraid/ It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/aacraid/rx.c | 2 +- drivers/scsi/aacraid/sa.c | 3 +-- drivers/scsi/aacraid/src.c | 4 ++-- 3

[PATCH] [RESEND] [SCSI] NCR5380: remove deprecated IRQF_DISABLED

2014-03-04 Thread Michael Opdenacker
This patch removes the use of the IRQF_DISABLED flag from drivers/scsi/NCR5380.c It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/NCR5380.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/NCR538

[PATCH][RESEND] [SCSI] misc drivers: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/aic7xxx_old.c| 2 +- drivers/scsi/dtc.c| 2 +- drivers/scsi/esas2r/esas2r_init.c | 2 +- dr

[PATCH][RESEND] [SCSI] wd7000: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/wd7000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/wd7000.c b/drivers/scsi/wd7

[PATCH][RESEND] [SCSI] u14-34f: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/u14-34f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/u14-34f.c b/drivers/scs

[PATCH][RESEND] [SCSI] ips: remove unused defines

2013-12-09 Thread Michael Opdenacker
This patch removes unused defines from drivers/scsi/ips.h - the min() macro is not used - the __iomem define is no longer needed to compile ips.c without warnings Signed-off-by: Michael Opdenacker --- drivers/scsi/ips.h | 8 1 file changed, 8 deletions(-) diff --git a/drivers/scsi

[PATCH][RESEND] [SCSI] ibmvstgt: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/ibmvscsi/ibmvstgt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/ibmvscsi/ibmvstg

[PATCH][RESEND] [SCSI] eata: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/eata.c | 2 +- drivers/scsi/eata_pio.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --

[PATCH][RESEND] [SCSI]: ARM: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/arm/acornscsi.c | 2 +- drivers/scsi/arm/cumana_1.c | 2 +- drivers/scsi/arm/cumana_2.c | 2 +- drivers/scs

[PATCH][RESEND] [SCSI] aic7xxx: remove duplicate define

2013-12-09 Thread Michael Opdenacker
Remove duplicate define in drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h Signed-off-by: Michael Opdenacker --- drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h b/drivers/scsi/aic7xxx/aicasm

[PATCH][RESEND] [SCSI] aha152x: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Also taking the opportunity to fix checkpatch issues on the lines I modified Signed-off-by: Michael Opdenacker --- drivers/scsi/aha152x.c | 4 ++-- 1 file chang

[PATCH][RESEND] [SCSI] aacraid: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
Signed-off-by: Michael Opdenacker --- drivers/scsi/aacraid/rx.c | 2 +- drivers/scsi/aacraid/sa.c | 3 +-- drivers/scsi/aacraid/src.c | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/scsi/aacraid/rx.c b/drivers/scsi/aacraid/rx.c index dada38aeacc0..bf077ce95bfe

[PATCH][RESEND] [SCSI] NCR5380: remove deprecated IRQF_DISABLED

2013-12-09 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/NCR5380.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/NCR5380.c b/drivers

[PATCH] [SCSI] ips: remove unused defines

2013-10-27 Thread Michael Opdenacker
This patch removes unused defines from drivers/scsi/ips.h - the min() macro is not used - the __iomem define is no longer needed to compile ips.c without warnings Signed-off-by: Michael Opdenacker --- drivers/scsi/ips.h | 8 1 file changed, 8 deletions(-) diff --git a/drivers/scsi

[PATCH] [SCSI] aic7xxx: remove duplicate define

2013-10-23 Thread Michael Opdenacker
Remove duplicate define in drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h Signed-off-by: Michael Opdenacker --- drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/scsi/aic7xxx/aicasm/aicasm_insformat.h b/drivers/scsi/aic7xxx/aicasm

[PATCH] [SCSI] wd7000: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/wd7000.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/wd7000.c b/drivers/scsi/wd7

[PATCH] [SCSI] u14-34f: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/u14-34f.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/u14-34f.c b/drivers/scs

[PATCH] [SCSI] ibmvstgt: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/ibmvscsi/ibmvstgt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/ibmvscsi/ibmvstg

[PATCH] [SCSI] eata: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/eata.c | 2 +- drivers/scsi/eata_pio.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --

[PATCH] [SCSI]: ARM: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/arm/acornscsi.c | 2 +- drivers/scsi/arm/cumana_1.c | 2 +- drivers/scsi/arm/cumana_2.c | 2 +- drivers/scs

[PATCH] [SCSI] misc drivers: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/aic7xxx_old.c| 2 +- drivers/scsi/dtc.c| 2 +- drivers/scsi/esas2r/esas2r_init.c | 2 +- dr

[PATCH] [SCSI] aha152x: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Also taking the opportunity to fix checkpatch issues on the lines I modified Signed-off-by: Michael Opdenacker --- drivers/scsi/aha152x.c | 4 ++-- 1 file chang

[PATCH] [SCSI] aacraid: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
Signed-off-by: Michael Opdenacker --- drivers/scsi/aacraid/rx.c | 2 +- drivers/scsi/aacraid/sa.c | 3 +-- drivers/scsi/aacraid/src.c | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/scsi/aacraid/rx.c b/drivers/scsi/aacraid/rx.c index dada38a..bf077ce 100644

[PATCH] [SCSI] NCR5380: remove deprecated IRQF_DISABLED

2013-10-05 Thread Michael Opdenacker
This patch proposes to remove the use of the IRQF_DISABLED flag It's a NOOP since 2.6.35 and it will be removed one day. Signed-off-by: Michael Opdenacker --- drivers/scsi/NCR5380.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/NCR5380.c b/drivers