Newer
Older
barebox / include / partition.h
@Alexander Shiyan Alexander Shiyan on 13 May 2012 285 bytes Removed duplicate definition for DEVFS_PARTITION_xxx
#ifndef __PARTITION_H
#define __PARTITION_H

struct device_d;

struct partition {
        int num;

	int flags;

        unsigned long offset;

        struct device_d *physdev;
        struct device_d device;

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

#endif /* __PARTITION_H */