/* SPDX-License-Identifier: GPL-2.0 */ /* * Meta DA JTAG debugger control. * * Copyright 2012 Imagination Technologies Ltd. */ #ifndef _METAG_DA_H_ #define _METAG_DA_H_ #ifdef CONFIG_METAG_DA #include <linux/init.h> #include <linux/types.h> extern bool _metag_da_present; /** * metag_da_enabled() - Find whether a DA is currently enabled. * * Returns: true if a DA was detected, false if not. */
static inline bool metag_da_enabled(void) { return _metag_da_present; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
James Hogan | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
James Hogan | 59 | 98.33% | 1 | 50.00% |
Greg Kroah-Hartman | 1 | 1.67% | 1 | 50.00% |
Total | 60 | 100.00% | 2 | 100.00% |