superio/*/superio.c: Don't hide pointer types behind typedefs

Hiding pointer types behind 'typedef's is usually not a great
idea at the best of times. Worse the typedef becomes an integer
at different stages in Coreboot. Let us refrain from doing this
at all.

Change-Id: Ia2ca8c98bb489daaa58f379433875864f6efabc8
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/7136
Tested-by: build bot (Jenkins)
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Edward O'Callaghan
2014-10-21 07:43:41 +11:00
parent 85836c2215
commit f21bdc3020
50 changed files with 152 additions and 152 deletions

View File

@@ -25,7 +25,7 @@
/* TODO: Add pnp_enter_ext_func_mode() etc. and wrap functions. */
static void init(device_t dev)
static void init(struct device *dev)
{
if (!dev->enabled)
return;

View File

@@ -24,7 +24,7 @@
#include <stdlib.h>
#include "it8671f.h"
static void init(device_t dev)
static void init(struct device *dev)
{
if (!dev->enabled)

View File

@@ -26,7 +26,7 @@
#include <stdlib.h>
#include "it8712f.h"
static void pnp_enter_ext_func_mode(device_t dev)
static void pnp_enter_ext_func_mode(struct device *dev)
{
u16 port = dev->path.pnp.port;
@@ -36,12 +36,12 @@ static void pnp_enter_ext_func_mode(device_t dev)
outb((port == 0x4e) ? 0xaa : 0x55, port);
}
static void pnp_exit_ext_func_mode(device_t dev)
static void pnp_exit_ext_func_mode(struct device *dev)
{
pnp_write_config(dev, 0x02, 0x02);
}
static void it8712f_init(device_t dev)
static void it8712f_init(struct device *dev)
{
if (!dev->enabled)

View File

@@ -29,7 +29,7 @@
#include <stdlib.h>
#include "it8716f.h"
static void pnp_enter_ext_func_mode(device_t dev)
static void pnp_enter_ext_func_mode(struct device *dev)
{
u16 port = dev->path.pnp.port;
@@ -39,7 +39,7 @@ static void pnp_enter_ext_func_mode(device_t dev)
outb((port == 0x4e) ? 0xaa : 0x55, port);
}
static void pnp_exit_ext_func_mode(device_t dev)
static void pnp_exit_ext_func_mode(struct device *dev)
{
pnp_write_config(dev, 0x02, 0x02);
}
@@ -73,7 +73,7 @@ static void init_ec(u16 base)
}
#endif
static void it8716f_init(device_t dev)
static void it8716f_init(struct device *dev)
{
struct resource *res0;

View File

@@ -24,7 +24,7 @@
#include <stdlib.h>
#include "it8718f.h"
static void init(device_t dev)
static void init(struct device *dev)
{
if (!dev->enabled)

View File

@@ -25,7 +25,7 @@
#include <stdlib.h>
#include "it8721f.h"
static void init(device_t dev)
static void init(struct device *dev)
{
if (!dev->enabled)

View File

@@ -30,7 +30,7 @@
#include "it8728f.h"
#include "it8728f_internal.h"
static void it8728f_init(device_t dev)
static void it8728f_init(struct device *dev)
{
if (!dev->enabled)
return;
@@ -68,7 +68,7 @@ static struct pnp_info pnp_dev_info[] = {
{ &ops, IT8728F_IR, PNP_IO0 | PNP_IRQ0, {0x0ff8, 0}, },
};
static void enable_dev(device_t dev)
static void enable_dev(struct device *dev)
{
pnp_enable_devices(dev, &ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
}

View File

@@ -26,7 +26,7 @@
#include "chip.h" /* FIXME */
#include "it8772f.h"
static void pnp_enter_ext_func_mode(device_t dev)
static void pnp_enter_ext_func_mode(struct device *dev)
{
u16 port = dev->path.pnp.port;
@@ -36,7 +36,7 @@ static void pnp_enter_ext_func_mode(device_t dev)
outb((port == 0x4e) ? 0xaa : 0x55, port);
}
static void pnp_exit_ext_func_mode(device_t dev)
static void pnp_exit_ext_func_mode(struct device *dev)
{
pnp_write_config(dev, 0x02, 0x02);
}
@@ -131,7 +131,7 @@ static void it8772f_enable_fan(struct resource *res, int fan)
}
}
static void it8772f_init(device_t dev)
static void it8772f_init(struct device *dev)
{
struct superio_ite_it8772f_config *conf = dev->chip_info;
struct resource *res;