make w83697hf_set_clksel_48() non-static and add a prototype
make w83697hf_set_clksel_48() non-static and add a prototype so as to get rid of warnings about it being unused Change-Id: I8ae94cfd61ae4774a367f83dd37e488987e2451a Signed-off-by: Florian Zumbiehl <florz@florz.de> Reviewed-on: http://review.coreboot.org/380 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
ab4c218379
commit
4a5c62cf91
|
@ -35,7 +35,7 @@ static void pnp_exit_ext_func_mode(device_t dev)
|
|||
outb(0xaa, port);
|
||||
}
|
||||
|
||||
static void w83697hf_set_clksel_48(device_t dev)
|
||||
void w83697hf_set_clksel_48(device_t dev)
|
||||
{
|
||||
u8 reg8;
|
||||
|
||||
|
|
|
@ -32,4 +32,8 @@
|
|||
#define W83697HF_ACPI 10 /* ACPI */
|
||||
#define W83697HF_HWM 11 /* Hardware monitor */
|
||||
|
||||
#ifndef __ROMCC__
|
||||
void w83697hf_set_clksel_48(device_t);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue