Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dc308f9f authored by Suman Anna's avatar Suman Anna Committed by Joerg Roedel
Browse files

iommu/omap: Remove unused union fields



There are couple of unions defined in the structures
iotlb_entry and cr_regs. There are no usage/references
to some of these union fields in the code, so clean
them up and simplify the structures.

Signed-off-by: default avatarSuman Anna <s-anna@ti.com>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent ad8e29a0
Loading
Loading
Loading
Loading
+3 −20
Original line number Diff line number Diff line
@@ -22,13 +22,8 @@ struct iotlb_entry {
	u32 da;
	u32 pa;
	u32 pgsz, prsvd, valid;
	union {
		u16 ap;
		struct {
	u32 endian, elsz, mixed;
};
	};
};

struct omap_iommu {
	const char	*name;
@@ -54,21 +49,9 @@ struct omap_iommu {
};

struct cr_regs {
	union {
		struct {
			u16 cam_l;
			u16 cam_h;
		};
	u32 cam;
	};
	union {
		struct {
			u16 ram_l;
			u16 ram_h;
		};
	u32 ram;
};
};

struct iotlb_lock {
	short base;