From 0e660873bf2466bd8a1f73332b58253f231c2f85 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Fri, 14 Jul 2017 20:25:05 +0200 Subject: drivers: Drop level of indirection for MMIO HW access MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don't need another level of indirection for these hardware accesses. Change-Id: Ic567d8272e5dd943ce19babbd7ad57ba5d86c354 Signed-off-by: Stefan Reinauer Reviewed-on: https://review.coreboot.org/20580 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki --- src/drivers/xgi/common/xgi_coreboot.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/drivers/xgi') diff --git a/src/drivers/xgi/common/xgi_coreboot.h b/src/drivers/xgi/common/xgi_coreboot.h index 57475d2450..dd5178219c 100644 --- a/src/drivers/xgi/common/xgi_coreboot.h +++ b/src/drivers/xgi/common/xgi_coreboot.h @@ -228,14 +228,6 @@ typedef u64 phys_addr_t; #define pr_debug(format, arg...) printk(BIOS_INFO, "XGI VGA: " format, ##arg) #define pr_err(format, arg...) printk(BIOS_ERR, "XGI VGA: " format, ##arg) -static inline void writel(u32 val, volatile void *addr) { - *(u32*)addr = val; -} - -static inline u32 readl(const volatile void *addr) { - return *(u32*)addr; -} - static inline int pci_read_config_dword(struct pci_dev *dev, int where, u32 *val) { -- cgit v1.2.3