summaryrefslogtreecommitdiff
path: root/src/include/superio
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-10-21 07:51:24 +1100
committerEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-10-27 12:50:12 +0100
commit377fd754932922e8c907994ef3e4d8ab925c6132 (patch)
tree69a2acc2f3dc9f5097d1face567d822ec3752407 /src/include/superio
parent795f96e2b947a950e4c56e34d1706308f8b2cec6 (diff)
downloadcoreboot-377fd754932922e8c907994ef3e4d8ab925c6132.tar.xz
superio/common/conf_mode.c: Don't hide pointers with typedefs
Change-Id: Ia1bbf2f885acf601b8a8360a7cd72819f70ef6a6 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/7137 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/include/superio')
-rw-r--r--src/include/superio/conf_mode.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/superio/conf_mode.h b/src/include/superio/conf_mode.h
index c49cae7e5a..9f7e3e619a 100644
--- a/src/include/superio/conf_mode.h
+++ b/src/include/superio/conf_mode.h
@@ -24,11 +24,11 @@
#include <device/pnp.h>
/* Common enter/exit implementations */
-void pnp_enter_conf_mode_55(device_t dev);
-void pnp_enter_conf_mode_8787(device_t dev);
-void pnp_exit_conf_mode_aa(device_t dev);
-void pnp_enter_conf_mode_870155aa(device_t dev);
-void pnp_exit_conf_mode_0202(device_t dev);
+void pnp_enter_conf_mode_55(struct device *dev);
+void pnp_enter_conf_mode_8787(struct device *dev);
+void pnp_exit_conf_mode_aa(struct device *dev);
+void pnp_enter_conf_mode_870155aa(struct device *dev);
+void pnp_exit_conf_mode_0202(struct device *dev);
extern const struct pnp_mode_ops pnp_conf_mode_55_aa;
extern const struct pnp_mode_ops pnp_conf_mode_8787_aa;