summaryrefslogtreecommitdiff
path: root/include/goldfish_tty.h
blob: db49c8d63446f2e499a6ede14d5d88ed35055e02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2025, Kuan-Wei Chiu <[email protected]>
 */

#ifndef _GOLDFISH_TTY_H_
#define _GOLDFISH_TTY_H_

#include <linux/types.h>

/* Platform data for the Goldfish TTY driver
 * Used to pass hardware base address from Board to Driver
 */
struct goldfish_tty_plat {
	phys_addr_t reg;
};

#endif /* _GOLDFISH_TTY_H_ */