mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-04 18:53:42 +00:00
serial: Remove unused NEEDS_MANUAL_RELOC code bits
The last user of the NEEDS_MANUAL_RELOC has been removed in commit
26af162ac8
("arch: m68k: Implement relocation")
Remove now unused NEEDS_MANUAL_RELOC code.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
This commit is contained in:
parent
09c8b8de02
commit
d55326d629
2 changed files with 0 additions and 39 deletions
|
@ -508,28 +508,6 @@ static int serial_post_probe(struct udevice *dev)
|
||||||
#endif
|
#endif
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
#if defined(CONFIG_NEEDS_MANUAL_RELOC)
|
|
||||||
if (ops->setbrg)
|
|
||||||
ops->setbrg += gd->reloc_off;
|
|
||||||
if (ops->getc)
|
|
||||||
ops->getc += gd->reloc_off;
|
|
||||||
if (ops->putc)
|
|
||||||
ops->putc += gd->reloc_off;
|
|
||||||
if (ops->pending)
|
|
||||||
ops->pending += gd->reloc_off;
|
|
||||||
if (ops->clear)
|
|
||||||
ops->clear += gd->reloc_off;
|
|
||||||
if (ops->getconfig)
|
|
||||||
ops->getconfig += gd->reloc_off;
|
|
||||||
if (ops->setconfig)
|
|
||||||
ops->setconfig += gd->reloc_off;
|
|
||||||
#if CFG_POST & CFG_SYS_POST_UART
|
|
||||||
if (ops->loop)
|
|
||||||
ops->loop += gd->reloc_off;
|
|
||||||
#endif
|
|
||||||
if (ops->getinfo)
|
|
||||||
ops->getinfo += gd->reloc_off;
|
|
||||||
#endif
|
|
||||||
/* Set the baud rate */
|
/* Set the baud rate */
|
||||||
if (ops->setbrg) {
|
if (ops->setbrg) {
|
||||||
ret = ops->setbrg(dev, gd->baudrate);
|
ret = ops->setbrg(dev, gd->baudrate);
|
||||||
|
|
|
@ -142,23 +142,6 @@ serial_initfunc(mtk_serial_initialize);
|
||||||
*/
|
*/
|
||||||
void serial_register(struct serial_device *dev)
|
void serial_register(struct serial_device *dev)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_NEEDS_MANUAL_RELOC
|
|
||||||
if (dev->start)
|
|
||||||
dev->start += gd->reloc_off;
|
|
||||||
if (dev->stop)
|
|
||||||
dev->stop += gd->reloc_off;
|
|
||||||
if (dev->setbrg)
|
|
||||||
dev->setbrg += gd->reloc_off;
|
|
||||||
if (dev->getc)
|
|
||||||
dev->getc += gd->reloc_off;
|
|
||||||
if (dev->tstc)
|
|
||||||
dev->tstc += gd->reloc_off;
|
|
||||||
if (dev->putc)
|
|
||||||
dev->putc += gd->reloc_off;
|
|
||||||
if (dev->puts)
|
|
||||||
dev->puts += gd->reloc_off;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
dev->next = serial_devices;
|
dev->next = serial_devices;
|
||||||
serial_devices = dev;
|
serial_devices = dev;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue