mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
91ec615e54
Rather than passing the I/O port base address to the Super I/O code, switch it to using outb such that it makes use of the I/O port base address automatically. Drop the extern keyword to satisfy checkpatch whilst here. Signed-off-by: Paul Burton <paul.burton@imgtec.com>
15 lines
339 B
C
15 lines
339 B
C
/*
|
|
* Copyright (C) 2013 Imagination Technologies
|
|
* Author: Paul Burton <paul.burton@imgtec.com>
|
|
*
|
|
* Setup code for the FDC37M817 super I/O controller
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __BOARD_MALTA_SUPERIO_H__
|
|
#define __BOARD_MALTA_SUPERIO_H__
|
|
|
|
void malta_superio_init(void);
|
|
|
|
#endif /* __BOARD_MALTA_SUPERIO_H__ */
|