[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.56.1.el8_10.x86_64
/
include
/
clocksource
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 arm_arch_timer.h
3,037 B
SET
[ EDIT ]
|
[ DEL ]
📄 hyperv_timer.h
3,378 B
SET
[ EDIT ]
|
[ DEL ]
📄 pxa.h
443 B
SET
[ EDIT ]
|
[ DEL ]
📄 samsung_pwm.h
1,327 B
SET
[ EDIT ]
|
[ DEL ]
📄 timer-sp804.h
848 B
SET
[ EDIT ]
|
[ DEL ]
📄 timer-ti-dm.h
12,616 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: timer-sp804.h
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __CLKSOURCE_TIMER_SP804_H #define __CLKSOURCE_TIMER_SP804_H struct clk; int __sp804_clocksource_and_sched_clock_init(void __iomem *, const char *, struct clk *, int); int __sp804_clockevents_init(void __iomem *, unsigned int, struct clk *, const char *); void sp804_timer_disable(void __iomem *); static inline void sp804_clocksource_init(void __iomem *base, const char *name) { __sp804_clocksource_and_sched_clock_init(base, name, NULL, 0); } static inline void sp804_clocksource_and_sched_clock_init(void __iomem *base, const char *name) { __sp804_clocksource_and_sched_clock_init(base, name, NULL, 1); } static inline void sp804_clockevents_init(void __iomem *base, unsigned int irq, const char *name) { __sp804_clockevents_init(base, irq, NULL, name); } #endif