summaryrefslogtreecommitdiffstats
path: root/include/partition.h
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:01:23 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:01:23 +0200
commitabfbbad1eb897c58d2ebc918a8b91cf1ea226c5f (patch)
treedd9ea8d7369c4c8e8c04da9725b3eb437980db30 /include/partition.h
parent11a0b5a0dd5f092777de41db00f3ffa8a95d698c (diff)
downloadbarebox-abfbbad1eb897c58d2ebc918a8b91cf1ea226c5f.tar.gz
barebox-abfbbad1eb897c58d2ebc918a8b91cf1ea226c5f.tar.xz
svn_rev_109
do not know anymore
Diffstat (limited to 'include/partition.h')
-rw-r--r--include/partition.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/partition.h b/include/partition.h
new file mode 100644
index 0000000000..014529fc07
--- /dev/null
+++ b/include/partition.h
@@ -0,0 +1,17 @@
+#ifndef __PARTITION_H
+#define __PARTITION_H
+
+struct device_d;
+
+struct partition {
+ int num;
+
+ struct device_d *parent;
+
+ struct device_d device;
+
+ struct partition *next;
+};
+
+#endif /* __PARTITION_H */
+