aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/cciss_ioctl.h
diff options
context:
space:
mode:
authorMike Miller <mike.miller@hp.com>2005-06-27 14:36:49 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-27 15:11:48 -0700
commitcd6fb584cf7f18ec6b221192b57d712ecc8c1859 (patch)
treea855ebcc235c4ec80de615a80d0072d12f69cc25 /include/linux/cciss_ioctl.h
parent[PATCH] cciss: pci id fix (diff)
downloadlinux-dev-cd6fb584cf7f18ec6b221192b57d712ecc8c1859.tar.xz
linux-dev-cd6fb584cf7f18ec6b221192b57d712ecc8c1859.zip
[PATCH] cciss: pci domain info pass 2
This is pass 2 of my patch to add pci domain info to an existing ioctl. This time I insert the domain between dev_fn and board_id as Willy suggested and change the var to unsigned short to ease Christoph's concerns. Although I thought unsigned int was the correct var type for this. I also thought it didn't matter where I inserted it in the structure. Signed-off-by: Mike Miller <mike.miller@hp.com> Acked-by: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/cciss_ioctl.h')
-rw-r--r--include/linux/cciss_ioctl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/cciss_ioctl.h b/include/linux/cciss_ioctl.h
index ee0c6e8995da..424d5e622b43 100644
--- a/include/linux/cciss_ioctl.h
+++ b/include/linux/cciss_ioctl.h
@@ -10,6 +10,7 @@
typedef struct _cciss_pci_info_struct
{
unsigned char bus;
+ unsigned short domain;
unsigned char dev_fn;
__u32 board_id;
} cciss_pci_info_struct;