X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=post%2Fboard%2Flwmon5%2Fsysmon.c;fp=post%2Fboard%2Flwmon5%2Fsysmon.c;h=9c49d0e646da583e6ed5c07710dcf7dbbe853ff6;hb=80f73b92a19129854876ec3f1aef531a09e86d2d;hp=aef5bd018a36f3e5ea69eb56991960fa3b223028;hpb=331ab60c4a418c39e5b1a05d4648a4155d0ad13e;p=oweals%2Fu-boot.git diff --git a/post/board/lwmon5/sysmon.c b/post/board/lwmon5/sysmon.c index aef5bd018a..9c49d0e646 100644 --- a/post/board/lwmon5/sysmon.c +++ b/post/board/lwmon5/sysmon.c @@ -58,8 +58,6 @@ DECLARE_GLOBAL_DATA_PTR; /* from dspic.c */ extern int dspic_read(ushort reg); -#define RELOC(x) if (x != NULL) x = (void *) ((ulong) (x) + gd->reloc_off) - #define REG_TEMPERATURE 0x12BC #define REG_VOLTAGE_5V 0x12CA #define REG_VOLTAGE_5V_STANDBY 0x12C6 @@ -160,20 +158,7 @@ int sysmon_init_f (void) void sysmon_reloc (void) { - sysmon_t ** l; - sysmon_table_t * t; - - for (l = sysmon_list; *l; l++) { - RELOC(*l); - RELOC((*l)->init); - RELOC((*l)->read); - } - - for (t = sysmon_table; t < sysmon_table + sysmon_table_size; t ++) { - RELOC(t->exec_before); - RELOC(t->exec_after); - RELOC(t->sysmon); - } + /* Do nothing for now, sysmon_reloc() is required by the sysmon post */ } static char *sysmon_unit_value (sysmon_table_t *s, uint val)