09.04.2020 20:52, Thierry Reding пишет: > +static int tegra210_emc_table_device_init(struct reserved_mem *rmem, > + struct device *dev) > +{ > + struct tegra210_emc *emc = dev_get_drvdata(dev); > + unsigned int i; > + void *table; > + > + table = memremap(rmem->base, rmem->size, MEMREMAP_WB); > + if (!table) { > + dev_err(dev, "failed to map EMC table\n"); > + return -ENOMEM; > + } > + > + emc->timings = (struct tegra210_emc_timing *)table; No need to cast the void.