aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/gigabyte/ma785gm/mainboard.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-04 20:19:02 +0200
committerMartin Roth <martinroth@google.com>2018-05-08 03:03:11 +0000
commit9981177cb8e06d5a00d22e1185a05aa38d217e33 (patch)
tree4e21a486ff2b4db0f6a841ccdc491022862509af /src/mainboard/gigabyte/ma785gm/mainboard.c
parent715a502c1784e7616fe2ff87232dfea3a0b1c076 (diff)
mb/gigabyte: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: I37ba054022241c93c03e6c804e46f4e8a1c1143e Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26084 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/gigabyte/ma785gm/mainboard.c')
-rw-r--r--src/mainboard/gigabyte/ma785gm/mainboard.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/gigabyte/ma785gm/mainboard.c b/src/mainboard/gigabyte/ma785gm/mainboard.c
index ac53c43086..a95686c797 100644
--- a/src/mainboard/gigabyte/ma785gm/mainboard.c
+++ b/src/mainboard/gigabyte/ma785gm/mainboard.c
@@ -31,7 +31,7 @@ void set_pcie_dereset()
{
u8 byte;
u16 word;
- device_t sm_dev;
+ struct device *sm_dev;
/* set 0 to bit1 :disable GPM9 as SLP_S2 output */
/* set 0 to bit2 :disable GPM8 as AZ_RST output */
byte = pm_ioread(0x8d);
@@ -56,7 +56,7 @@ void set_pcie_reset()
{
u8 byte;
u16 word;
- device_t sm_dev;
+ struct device *sm_dev;
/* set 0 to bit1 :disable GPM9 as SLP_S2 output */
/* set 0 to bit2 :disable GPM8 as AZ_RST output */
@@ -94,7 +94,7 @@ static void set_gpio40_gfx(void)
u8 byte;
// u16 word;
u32 dword;
- device_t sm_dev;
+ struct device *sm_dev;
/* disable the GPIO40 as CLKREQ2# function */
byte = pm_ioread(0xd3);
byte &= ~(1 << 7);
@@ -130,7 +130,7 @@ static void set_gpio40_gfx(void)
* enable the dedicated function in ma785gm board.
* This function called early than rs780_enable.
*************************************************/
-static void mainboard_enable(device_t dev)
+static void mainboard_enable(struct device *dev)
{
printk(BIOS_INFO, "Mainboard MA785GM-US2H Enable. dev=0x%p\n", dev);