Newer
Older
barebox / include / partition.h
@Sascha Hauer Sascha Hauer on 30 Jun 2012 278 bytes partitions: Make 64bit capable
#ifndef __PARTITION_H
#define __PARTITION_H

struct device_d;

struct partition {
        int num;

	int flags;

        loff_t offset;

        struct device_d *physdev;
        struct device_d device;

        char name[16];
	struct cdev cdev;
};

#endif /* __PARTITION_H */