coreboot-kgpe-d16/src/mainboard/supermicro/h8dmr
Patrick Georgi c75c79bd02 mptable: Get rid of fixup_virtual_wire
As stated in some code files, fixup_virtual_wire was established
to avoid touching 200 invocations of the mptable code.

Let Coccinelle do it:
  @@
  type T;
  identifier v;
  @@
  -void fixup_virtual_wire(T v)
  -{ ... }

  @@
  expression A;
  identifier v;
  @@
  -v = smp_write_floating_table(A);
  +v = smp_write_floating_table(A, 0);

  @@
  expression A;
  identifier v;
  @@
  -v = smp_write_floating_table(A, 0);
  -fixup_virtual_wire(v);
  +v = smp_write_floating_table(A, 1);

Change-Id: Icad8a063380bf4726be7cebb414d13b574112b14
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/245
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
2011-10-13 01:10:44 +02:00
..
ap_romstage.c In 2007 Adrian Reber suggested that we drop ASSEMBLY in favor of __ASSEMBLER__. 2011-04-10 04:15:23 +00:00
chip.h Remove unused mainboard_config definitions. Trivial. 2010-08-26 18:24:04 +00:00
cmos.layout Since some people disapprove of white space cleanups mixed in regular commits 2010-04-27 06:56:47 +00:00
devicetree.cb Use subsystem id from devicetree.cb instead of Kconfig and move 2011-03-01 19:58:47 +00:00
get_bus_conf.c Final set of smp_write_bus -> mptable_write_buses changes. 2010-11-22 14:14:56 +00:00
irq_tables.c Since some people disapprove of white space cleanups mixed in regular commits 2010-04-27 06:56:47 +00:00
Kconfig Use subsystem id from devicetree.cb instead of Kconfig and move 2011-03-01 19:58:47 +00:00
mainboard.c Cleanup up HD audio codec / hda_verb.h files. 2010-12-15 08:56:19 +00:00
mptable.c mptable: Get rid of fixup_virtual_wire 2011-10-13 01:10:44 +02:00
resourcemap.c Since some people disapprove of white space cleanups mixed in regular commits 2010-04-27 06:56:47 +00:00
romstage.c run uart_init() from console_init, just like the other console initialization functions. 2011-04-20 20:54:07 +00:00