Alexandru Gagniuc (mr.nuke.me@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1481
-gerrit
commit 427e4f0bc3754f3f05e495ea20830785d5896d05 Author: Alexandru Gagniuc mr.nuke.me@gmail.com Date: Wed Aug 22 19:12:49 2012 -0500
ioapic driver: typedef the ioapic_config struct (TRIVIAL)
I use the ioapic_config in my VX900 branch. Typing: struct drivers_generic_ioapic_config *config = (struct drivers_generic_ioapic_config *)dev->chip_info;
is clumsy at best, so just create a typedef to mahe this more elegant: ioapic_config_t config = (ioapic_config_t)ioapic->chip_info;
Change-Id: I407899845cfbd847ba6309dd0cf9ef836a607c8e Signed-off-by: Alexandru Gagniuc mr.nuke.me@gmail.com --- src/drivers/generic/ioapic/chip.h | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/src/drivers/generic/ioapic/chip.h b/src/drivers/generic/ioapic/chip.h index ad6ff0b..007c521 100644 --- a/src/drivers/generic/ioapic/chip.h +++ b/src/drivers/generic/ioapic/chip.h @@ -2,6 +2,7 @@ * This file is part of the coreboot project. * * Copyright (C) 2011 Sven Schnelle svens@stackframe.org + * Copyright (C) 2012 Alexandru Gagniuc mr.nuke.me@gmail.com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,4 +29,6 @@ struct drivers_generic_ioapic_config { u8 have_isa_interrupts; u32 base; }; + +typedef struct drivers_generic_ioapic_config *ioapic_config_t; #endif