Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-6.8.0-136 /
include /
misc /
Delete
Unzip
Name
Size
Permission
Date
Action
altera.h
803
B
-rw-r--r--
2024-03-10 20:38
cxl-base.h
1017
B
-rw-r--r--
2024-03-10 20:38
cxl.h
9.53
KB
-rw-r--r--
2024-03-10 20:38
cxllib.h
3.28
KB
-rw-r--r--
2024-03-10 20:38
ocxl-config.h
1.9
KB
-rw-r--r--
2024-03-10 20:38
ocxl.h
14.16
KB
-rw-r--r--
2024-03-10 20:38
Save
Rename
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * altera.h * * altera FPGA driver * * Copyright (C) Altera Corporation 1998-2001 * Copyright (C) 2010 NetUP Inc. * Copyright (C) 2010 Igor M. Liplianin <liplianin@netup.ru> */ #ifndef _ALTERA_H_ #define _ALTERA_H_ struct altera_config { void *dev; u8 *action; int (*jtag_io) (void *dev, int tms, int tdi, int tdo); }; #if defined(CONFIG_ALTERA_STAPL) || \ (defined(CONFIG_ALTERA_STAPL_MODULE) && defined(MODULE)) extern int altera_init(struct altera_config *config, const struct firmware *fw); #else static inline int altera_init(struct altera_config *config, const struct firmware *fw) { printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); return 0; } #endif /* CONFIG_ALTERA_STAPL */ #endif /* _ALTERA_H_ */