Re: [PATCH] [SCSI] hpsa: fix non-x86 builds

2014-07-03 Thread scameron
On Thu, Jul 03, 2014 at 01:43:48AM -0700, Christoph Hellwig wrote: > On Thu, Jun 26, 2014 at 09:34:45AM -0500, scame...@beardog.cce.hp.com wrote: > > Thanks. > > Do you plan to include this with the next hpsa update, or should I take > this as an ACK and apply it? Take it as an ACK. I should

Re: [PATCH] [SCSI] hpsa: fix non-x86 builds

2014-07-03 Thread Christoph Hellwig
On Thu, Jun 26, 2014 at 09:34:45AM -0500, scame...@beardog.cce.hp.com wrote: > Thanks. Do you plan to include this with the next hpsa update, or should I take this as an ACK and apply it? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to

Re: [PATCH] [SCSI] hpsa: fix non-x86 builds

2014-07-03 Thread Christoph Hellwig
On Thu, Jun 26, 2014 at 09:34:45AM -0500, scame...@beardog.cce.hp.com wrote: Thanks. Do you plan to include this with the next hpsa update, or should I take this as an ACK and apply it? -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to

Re: [PATCH] [SCSI] hpsa: fix non-x86 builds

2014-07-03 Thread scameron
On Thu, Jul 03, 2014 at 01:43:48AM -0700, Christoph Hellwig wrote: On Thu, Jun 26, 2014 at 09:34:45AM -0500, scame...@beardog.cce.hp.com wrote: Thanks. Do you plan to include this with the next hpsa update, or should I take this as an ACK and apply it? Take it as an ACK. I should have

Re: [PATCH] [SCSI] hpsa: fix non-x86 builds

2014-06-26 Thread scameron
On Thu, Jun 26, 2014 at 03:44:52PM +0200, Arnd Bergmann wrote: > commit 28e134464734 "[SCSI] hpsa: enable unit attention reporting" > turns on unit attention notifications, but got the change wrong for > all architectures other than x86, which now store an uninitialized > value into the device

[PATCH] [SCSI] hpsa: fix non-x86 builds

2014-06-26 Thread Arnd Bergmann
commit 28e134464734 "[SCSI] hpsa: enable unit attention reporting" turns on unit attention notifications, but got the change wrong for all architectures other than x86, which now store an uninitialized value into the device register. Gcc helpfully warns about this: ../drivers/scsi/hpsa.c: In

[PATCH] [SCSI] hpsa: fix non-x86 builds

2014-06-26 Thread Arnd Bergmann
commit 28e134464734 [SCSI] hpsa: enable unit attention reporting turns on unit attention notifications, but got the change wrong for all architectures other than x86, which now store an uninitialized value into the device register. Gcc helpfully warns about this: ../drivers/scsi/hpsa.c: In

Re: [PATCH] [SCSI] hpsa: fix non-x86 builds

2014-06-26 Thread scameron
On Thu, Jun 26, 2014 at 03:44:52PM +0200, Arnd Bergmann wrote: commit 28e134464734 [SCSI] hpsa: enable unit attention reporting turns on unit attention notifications, but got the change wrong for all architectures other than x86, which now store an uninitialized value into the device register.