mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
779653b0cb
We don't need this anymore - we can use device tree and the new pinconfig driver instead. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
17 lines
290 B
C
17 lines
290 B
C
/*
|
|
* Copyright (c) 2012, Google Inc. All rights reserved.
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
*/
|
|
|
|
#ifndef _X86_GPIO_H_
|
|
#define _X86_GPIO_H_
|
|
|
|
#include <asm-generic/gpio.h>
|
|
|
|
struct ich6_bank_platdata {
|
|
uint16_t base_addr;
|
|
const char *bank_name;
|
|
int offset;
|
|
};
|
|
|
|
#endif /* _X86_GPIO_H_ */
|