9
0
Fork 0
barebox/include/partition.h

19 lines
252 B
C

#ifndef __PARTITION_H
#define __PARTITION_H
struct device_d;
struct partition {
int num;
unsigned long offset;
struct device_d *parent;
struct device_d device;
char name[16];
};
#endif /* __PARTITION_H */