summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/include/linux/kgdb.h
blob: 73759b3be7543a751f85bf794e534cadcd3af367 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Public domain. */

#ifndef _LINUX_KGDB_H
#define _LINUX_KGDB_H

#include <ddb/db_var.h>

static inline int
in_dbg_master(void)
{
#ifdef DDB
	return (db_is_active);
#endif
	return (0);
}

#endif