summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorIdwer Vollering <vidwer@gmail.com>2019-12-16 15:36:46 +0100
committerIdwer Vollering <vidwer@gmail.com>2020-11-26 23:31:46 +0000
commit99eed832aedf8557082bb647b5c8e6cdb016f23a (patch)
treec91e2523b2853d6bc764fa57f0d1cad7d5564dff /util
parent3044d708f8f06f3f5f5404de47f6eed47f1dfdae (diff)
downloadcoreboot-99eed832aedf8557082bb647b5c8e6cdb016f23a.tar.xz
util/inteltool: drop OS-specific rdmsr/wrmsr prototypes
The previous commit (that was not touching inteltool.h) marking internal functions as static is commit 6faccd1f00 Tested on: FreeBSD 13.0-CURRENT r355582 Change-Id: I4aba72f39b528fd70451a4656fd6c835ff766e49 Signed-off-by: Idwer Vollering <vidwer@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37767 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jacob Garber <jgarber1@ualberta.ca> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util')
-rw-r--r--util/inteltool/inteltool.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h
index 77ad61f410..b3253e7d9c 100644
--- a/util/inteltool/inteltool.h
+++ b/util/inteltool/inteltool.h
@@ -380,8 +380,6 @@ typedef struct { uint32_t hi, lo; } msr_t;
#define rdmsr freebsd_rdmsr
#define wrmsr freebsd_wrmsr
typedef struct { uint32_t hi, lo; } msr_t;
-msr_t freebsd_rdmsr(int addr);
-int freebsd_wrmsr(int addr, msr_t msr);
#endif
typedef struct { uint16_t addr; int size; char *name; } io_register_t;
typedef struct {