diff options
Diffstat (limited to 'src/mainboard/gigabyte/ma785gmt')
-rw-r--r-- | src/mainboard/gigabyte/ma785gmt/Kconfig | 4 | ||||
-rw-r--r-- | src/mainboard/gigabyte/ma785gmt/devicetree.cb | 2 | ||||
-rw-r--r-- | src/mainboard/gigabyte/ma785gmt/mainboard.c | 7 |
3 files changed, 5 insertions, 8 deletions
diff --git a/src/mainboard/gigabyte/ma785gmt/Kconfig b/src/mainboard/gigabyte/ma785gmt/Kconfig index fd511a8a83..77bda90321 100644 --- a/src/mainboard/gigabyte/ma785gmt/Kconfig +++ b/src/mainboard/gigabyte/ma785gmt/Kconfig @@ -1,4 +1,4 @@ -if BOARD_GIGABYTE_GA785GMT +if BOARD_GIGABYTE_MA785GMT config BOARD_SPECIFIC_OPTIONS # dummy def_bool y @@ -83,4 +83,4 @@ config RAMBASE hex default 0x200000 -endif # BOARD_GIGABYTE_GA785GMT +endif # BOARD_GIGABYTE_MA785GMT diff --git a/src/mainboard/gigabyte/ma785gmt/devicetree.cb b/src/mainboard/gigabyte/ma785gmt/devicetree.cb index 02e4bc888a..124572f5e5 100644 --- a/src/mainboard/gigabyte/ma785gmt/devicetree.cb +++ b/src/mainboard/gigabyte/ma785gmt/devicetree.cb @@ -1,4 +1,4 @@ -# sample config for gigabyte ga785gmt +# sample config for gigabyte/ma785gmt chip northbridge/amd/amdfam10/root_complex device lapic_cluster 0 on chip cpu/amd/socket_AM3 #L1 and DDR3 diff --git a/src/mainboard/gigabyte/ma785gmt/mainboard.c b/src/mainboard/gigabyte/ma785gmt/mainboard.c index 768c9e1d55..5747e62853 100644 --- a/src/mainboard/gigabyte/ma785gmt/mainboard.c +++ b/src/mainboard/gigabyte/ma785gmt/mainboard.c @@ -96,8 +96,6 @@ void set_pcie_reset() pci_write_config16(sm_dev, 0x7e, word); } - - /* * justify the dev3 is exist or not */ @@ -126,7 +124,6 @@ int is_dev3_present(void) } } - /* * set gpio40 gfx */ @@ -253,7 +250,7 @@ static void set_thermal_config(void) *************************************************/ static void ma785gmt_enable(device_t dev) { - printk(BIOS_INFO, "Mainboard Gigabyte ma785gmt Enable. dev=0x%p\n", dev); + printk(BIOS_INFO, "Mainboard MA785GMT-UD2H Enable. dev=0x%p\n", dev); #if (CONFIG_GFXUMA == 1) msr_t msr, msr2; @@ -315,6 +312,6 @@ int add_mainboard_resources(struct lb_memory *mem) } struct chip_operations mainboard_ops = { - CHIP_NAME("GIGABYTE MA785GMT Mainboard") + CHIP_NAME("GIGABYTE MA785GMT-UD2H Mainboard") .enable_dev = ma785gmt_enable, }; |