mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* arch/arm/probes/kprobes/checkers.h
|
|
*
|
|
* Copyright (C) 2014 Huawei Inc.
|
|
*/
|
|
#ifndef _ARM_KERNEL_PROBES_CHECKERS_H
|
|
#define _ARM_KERNEL_PROBES_CHECKERS_H
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/types.h>
|
|
#include "../decode.h"
|
|
|
|
extern probes_check_t checker_stack_use_none;
|
|
extern probes_check_t checker_stack_use_unknown;
|
|
#ifdef CONFIG_THUMB2_KERNEL
|
|
extern probes_check_t checker_stack_use_imm_0xx;
|
|
#else
|
|
extern probes_check_t checker_stack_use_imm_x0x;
|
|
#endif
|
|
extern probes_check_t checker_stack_use_imm_xxx;
|
|
extern probes_check_t checker_stack_use_stmdx;
|
|
|
|
enum {
|
|
STACK_USE_NONE,
|
|
STACK_USE_UNKNOWN,
|
|
#ifdef CONFIG_THUMB2_KERNEL
|
|
STACK_USE_FIXED_0XX,
|
|
STACK_USE_T32STRD,
|
|
#else
|
|
STACK_USE_FIXED_X0X,
|
|
#endif
|
|
STACK_USE_FIXED_XXX,
|
|
STACK_USE_STMDX,
|
|
NUM_STACK_USE_TYPES
|
|
};
|
|
|
|
extern const union decode_action stack_check_actions[];
|
|
|
|
#ifndef CONFIG_THUMB2_KERNEL
|
|
extern const struct decode_checker arm_stack_checker[];
|
|
extern const struct decode_checker arm_regs_checker[];
|
|
#else
|
|
#endif
|
|
extern const struct decode_checker t32_stack_checker[];
|
|
extern const struct decode_checker t16_stack_checker[];
|
|
#endif
|