blob: ac6b2d138ee5223dfd7d95b9d65a2c9777e80f8a [file] [log] [blame]
Jon Medhurst24371702011-04-19 17:56:58 +01001/*
2 * arch/arm/kernel/kprobes-thumb.c
3 *
4 * Copyright (C) 2011 Jon Medhurst <tixy@yxit.co.uk>.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/kernel.h>
12#include <linux/kprobes.h>
13
14#include "kprobes.h"
15
16enum kprobe_insn __kprobes
17thumb16_kprobe_decode_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi)
18{
19 return INSN_REJECTED;
20}
21
22enum kprobe_insn __kprobes
23thumb32_kprobe_decode_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi)
24{
25 return INSN_REJECTED;
26}