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:
@@ -26,7 +26,7 @@
|
||||
#include <stdlib.h>
|
||||
#include "f71805f.h"
|
||||
|
||||
static void f71805f_init(device_t dev)
|
||||
static void f71805f_init(struct device *dev)
|
||||
{
|
||||
if (!dev->enabled)
|
||||
return;
|
||||
@@ -54,7 +54,7 @@ static struct pnp_info pnp_dev_info[] = {
|
||||
{ &ops, F71805F_PME, },
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include <stdlib.h>
|
||||
#include "f71859.h"
|
||||
|
||||
static void f71859_init(device_t dev)
|
||||
static void f71859_init(struct device *dev)
|
||||
{
|
||||
if (!dev->enabled)
|
||||
return;
|
||||
@@ -49,7 +49,7 @@ static struct pnp_info pnp_dev_info[] = {
|
||||
{ &ops, F71859_SP1, PNP_IO0 | PNP_IRQ0, {0x07f8, 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);
|
||||
}
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include <pc80/keyboard.h>
|
||||
#include "f71863fg.h"
|
||||
|
||||
static void f71863fg_init(device_t dev)
|
||||
static void f71863fg_init(struct device *dev)
|
||||
{
|
||||
struct resource *res0;
|
||||
|
||||
@@ -66,7 +66,7 @@ static struct pnp_info pnp_dev_info[] = {
|
||||
{ &ops, F71863FG_PME, },
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
||||
|
@@ -30,7 +30,7 @@
|
||||
#include "chip.h"
|
||||
#include "f71869ad.h"
|
||||
|
||||
static void f71869ad_init(device_t dev)
|
||||
static void f71869ad_init(struct device *dev)
|
||||
{
|
||||
if (!dev->enabled)
|
||||
return;
|
||||
@@ -122,7 +122,7 @@ static struct pnp_info pnp_dev_info[] = {
|
||||
{ &ops, F71869AD_PME, },
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include <pc80/keyboard.h>
|
||||
#include "f71872.h"
|
||||
|
||||
static void f71872_init(device_t dev)
|
||||
static void f71872_init(struct device *dev)
|
||||
{
|
||||
|
||||
if (!dev->enabled)
|
||||
@@ -63,7 +63,7 @@ static struct pnp_info pnp_dev_info[] = {
|
||||
{ &ops, F71872_PM, },
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include <pc80/keyboard.h>
|
||||
#include "f71889.h"
|
||||
|
||||
static void f71889_init(device_t dev)
|
||||
static void f71889_init(struct device *dev)
|
||||
{
|
||||
|
||||
if (!dev->enabled)
|
||||
@@ -65,7 +65,7 @@ static struct pnp_info pnp_dev_info[] = {
|
||||
{ &ops, F71889_VREF, },
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
||||
|
@@ -27,7 +27,7 @@
|
||||
#include <pc80/keyboard.h>
|
||||
#include "f81865f.h"
|
||||
|
||||
static void f81865f_init(device_t dev)
|
||||
static void f81865f_init(struct device *dev)
|
||||
{
|
||||
|
||||
if (!dev->enabled)
|
||||
@@ -62,7 +62,7 @@ static struct pnp_info pnp_dev_info[] = {
|
||||
{ &ops, F81865F_PME, },
|
||||
};
|
||||
|
||||
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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user