9
0
Fork 0
barebox/include/partition.h

21 lines
280 B
C
Raw Normal View History

2007-07-05 16:01:23 +00:00
#ifndef __PARTITION_H
#define __PARTITION_H
#include <driver.h>
2007-07-05 16:01:23 +00:00
struct partition {
int num;
int flags;
loff_t offset;
2007-07-05 16:01:53 +00:00
struct device_d *physdev;
struct device_d device;
char name[16];
struct cdev cdev;
};
2007-07-05 16:01:23 +00:00
#endif /* __PARTITION_H */