diff options
author | mikem <mikem@beardog.cca.cpqcorp.net> | 2005-11-18 16:00:17 -0500 |
---|---|---|
committer | Jens Axboe <axboe@suse.de> | 2005-11-18 16:00:17 -0500 |
commit | 7f0d50391adf371a0e66da0a1a44ba5cc6744ee8 (patch) | |
tree | 799acb2aaed28f5103af859dffde4bb1413848c2 /include/linux/cciss_ioctl.h | |
parent | eb97b73d75d5c9af7c78c05106de9e3fdc4455ab (diff) |
[PATCH 1/3] cciss: bug fix for hpacucli
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>
Diffstat (limited to 'include/linux/cciss_ioctl.h')
-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 @@ | |||
10 | typedef struct _cciss_pci_info_struct | 10 | typedef struct _cciss_pci_info_struct |
11 | { | 11 | { |
12 | unsigned char bus; | 12 | unsigned char bus; |
13 | unsigned short domain; | ||
14 | unsigned char dev_fn; | 13 | unsigned char dev_fn; |
14 | unsigned short domain; | ||
15 | __u32 board_id; | 15 | __u32 board_id; |
16 | } cciss_pci_info_struct; | 16 | } cciss_pci_info_struct; |
17 | 17 | ||