summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2010-03-24 11:33:25 +1100
committerStephen Rothwell <sfr@canb.auug.org.au>2010-03-24 11:33:25 +1100
commit52802895cddd40a364754a584a5431c145199b4b (patch)
tree0fe77f2a837f7d85b324695824b2fc8ccf40cd71 /include
parent2876a7f359454abd745720f0a3981d5bc05a8569 (diff)
parent5bb0ec8e923d1740499aa78f15df740a8dbebfa7 (diff)
Merge remote branch 'libata/NEXT'
Conflicts: drivers/ata/ahci.c
Diffstat (limited to 'include')
-rw-r--r--include/linux/ahci_platform.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/include/linux/ahci_platform.h b/include/linux/ahci_platform.h
new file mode 100644
index 000000000000..f7dd576dd5a4
--- /dev/null
+++ b/include/linux/ahci_platform.h
@@ -0,0 +1,29 @@
+/*
+ * AHCI SATA platform driver
+ *
+ * Copyright 2004-2005 Red Hat, Inc.
+ * Jeff Garzik <jgarzik@pobox.com>
+ * Copyright 2010 MontaVista Software, LLC.
+ * Anton Vorontsov <avorontsov@ru.mvista.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ */
+
+#ifndef _AHCI_PLATFORM_H
+#define _AHCI_PLATFORM_H
+
+struct device;
+struct ata_port_info;
+
+struct ahci_platform_data {
+ int (*init)(struct device *dev);
+ void (*exit)(struct device *dev);
+ const struct ata_port_info *ata_port_info;
+ unsigned int force_port_map;
+ unsigned int mask_port_map;
+};
+
+#endif /* _AHCI_PLATFORM_H */