ftrace.c (664b0bae0b87f69bc9deb098f5e0158b9cf18e04) | ftrace.c (ad0dfdfd874c38d42bc4e5ef8969d86f3da0b93a) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 |
|
1/* 2 * Simple kernel driver to link kernel Ftrace and an STM device 3 * Copyright (c) 2016, Linaro Ltd. 4 * | 2/* 3 * Simple kernel driver to link kernel Ftrace and an STM device 4 * Copyright (c) 2016, Linaro Ltd. 5 * |
5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms and conditions of the GNU General Public License, 7 * version 2, as published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * | |
14 * STM Ftrace will be registered as a trace_export. 15 */ 16 17#include <linux/module.h> 18#include <linux/stm.h> 19#include <linux/trace.h> 20 21#define STM_FTRACE_NR_CHANNELS 1 --- 68 unchanged lines hidden --- | 6 * STM Ftrace will be registered as a trace_export. 7 */ 8 9#include <linux/module.h> 10#include <linux/stm.h> 11#include <linux/trace.h> 12 13#define STM_FTRACE_NR_CHANNELS 1 --- 68 unchanged lines hidden --- |