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

Commit e2fcabe0 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Helge Deller
Browse files

parisc/dino: use container_of in DINO_DEV



Use the type safe container_of macros instead of a blind cast in
DINO_DEV, and turn the macro into an inline function.

Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
parent cb0f7ab4
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -154,12 +154,10 @@ struct dino_device
#endif
};

/* Looks nice and keeps the compiler happy */
#define DINO_DEV(d) ({				\
	void *__pdata = d;			\
	BUG_ON(!__pdata);			\
	(struct dino_device *)__pdata; })

static inline struct dino_device *DINO_DEV(struct pci_hba_data *hba)
{
	return container_of(hba, struct dino_device, hba);
}

/*
 * Dino Configuration Space Accessor Functions