From 83a6dbd006a3afec979d8bb7316834fcb54e003b Mon Sep 17 00:00:00 2001 From: Alexandru Gagniuc Date: Wed, 22 Aug 2012 19:12:49 -0500 Subject: 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 Reviewed-on: http://review.coreboot.org/1481 Tested-by: build bot (Jenkins) Reviewed-by: Anton Kochkov --- src/drivers/generic/ioapic/chip.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/drivers/generic/ioapic/chip.h') diff --git a/src/drivers/generic/ioapic/chip.h b/src/drivers/generic/ioapic/chip.h index ad6ff0ba1f..0936d63c90 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 + * Copyright (C) 2012 Alexandru Gagniuc * * 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 @@ -20,12 +21,13 @@ #ifndef DRIVERS_GENERIC_IOAPIC_CHIP_H #define DRIVERS_GENERIC_IOAPIC_CHIP_H -struct drivers_generic_ioapic_config { +typedef struct drivers_generic_ioapic_config { u32 version; u8 apicid; u8 irq_on_fsb; u8 enable_virtual_wire; u8 have_isa_interrupts; u32 base; -}; +} ioapic_config_t; + #endif -- cgit v1.2.3