diff options
author | Linux Kernel Mailing List <linux-kernel@vger.kernel.org> | 2005-11-18 14:02:54 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-12-14 15:43:00 -0800 |
commit | 1023cf6f2fe71367b6855e24e2dd4668bd00ad3c (patch) | |
tree | 8f44587587b750e95bd55653b5fca74e6f4462c6 | |
parent | 7d011b38766b255cd4473a0a523d9362bf42bee0 (diff) | |
download | lwn-1023cf6f2fe71367b6855e24e2dd4668bd00ad3c.tar.gz lwn-1023cf6f2fe71367b6855e24e2dd4668bd00ad3c.zip |
[PATCH] cciss: bug fix for hpacucli
From Mike Miller <mikem@beardog.cca.cpqcorp.net>
This patch fixes a bug that breaks hpacucli, a command line interface
for the HP Array Config Utility. Without this fix the utility will
not detect any controllers in the system. I thought I had already fixed
this, but I guess not.
Thanks to all who reported the issue. Please consider this this inclusion.
Signed-off-by: Mike Miller <mikem@beardog.cca.cpqcorp.net>
Signed-off-by: Jens Axboe <axboe@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | include/linux/cciss_ioctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/cciss_ioctl.h b/include/linux/cciss_ioctl.h index 424d5e622b43..6e27f42e3a57 100644 --- a/include/linux/cciss_ioctl.h +++ b/include/linux/cciss_ioctl.h @@ -10,8 +10,8 @@ typedef struct _cciss_pci_info_struct { unsigned char bus; - unsigned short domain; unsigned char dev_fn; + unsigned short domain; __u32 board_id; } cciss_pci_info_struct; |