commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
19 lines
397 B
C
19 lines
397 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* interface to the SCLP-read/write driver
|
|
*
|
|
* S390 version
|
|
* Copyright IBM Corp. 1999
|
|
* Author(s): Martin Peschke <mpeschke@de.ibm.com>
|
|
* Martin Schwidefsky <schwidefsky@de.ibm.com>
|
|
*/
|
|
|
|
#ifndef __SCLP_TTY_H__
|
|
#define __SCLP_TTY_H__
|
|
|
|
#include <linux/tty_driver.h>
|
|
|
|
extern struct tty_driver *sclp_tty_driver;
|
|
|
|
#endif /* __SCLP_TTY_H__ */
|