mtd: r852: remove casts from void
Remove unnesessary casts from void*. Signed-off-by: Kulikov Vasiliy <segooon@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
771a115a6d
commit
d5af6dcffa
|
@ -64,8 +64,8 @@ static inline void r852_write_reg_dword(struct r852_device *dev,
|
|||
/* returns pointer to our private structure */
|
||||
static inline struct r852_device *r852_get_dev(struct mtd_info *mtd)
|
||||
{
|
||||
struct nand_chip *chip = (struct nand_chip *)mtd->priv;
|
||||
return (struct r852_device *)chip->priv;
|
||||
struct nand_chip *chip = mtd->priv;
|
||||
return chip->priv;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue