Vladimir Serbinenko (phcoder@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7680
-gerrit
commit 0b128b860ac79e2db5643b2ea71cfd97486d31f5 Author: Vladimir Serbinenko phcoder@gmail.com Date: Sun Dec 7 11:47:17 2014 +0100
early_me_native.c: Remove unused pci_write_dword_ptr.
Change-Id: I97f4ef373c250665c4a2265571e71a27ecef13da Signed-off-by: Vladimir Serbinenko phcoder@gmail.com --- src/southbridge/intel/bd82x6x/early_me_native.c | 7 ------- 1 file changed, 7 deletions(-)
diff --git a/src/southbridge/intel/bd82x6x/early_me_native.c b/src/southbridge/intel/bd82x6x/early_me_native.c index 15e4087..33ed549 100644 --- a/src/southbridge/intel/bd82x6x/early_me_native.c +++ b/src/southbridge/intel/bd82x6x/early_me_native.c @@ -45,13 +45,6 @@ static inline void pci_read_dword_ptr(void *ptr, int offset) memcpy(ptr, &dword, sizeof(dword)); }
-static inline void pci_write_dword_ptr(void *ptr, int offset) -{ - u32 dword = 0; - memcpy(&dword, ptr, sizeof(dword)); - pci_write_config32(PCH_ME_DEV, offset, dword); -} - void intel_early_me_status(void) { struct me_hfs hfs;