early_me_native.c: Remove unused pci_write_dword_ptr.
Change-Id: I97f4ef373c250665c4a2265571e71a27ecef13da Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/7680 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
parent
ecbfa28c11
commit
29b8a0976f
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue