blob: f7d0f4e14cee5c0730a82bedc55e8c4d3e9a4b1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* mdm_apcdmp.h
*
* Intel Mobile driver for modem debugging.
*
* Copyright (C) 2015 ASUS Corporation. All rights reserved.
*
* Contact: Yuehtsang Li <Yuehtsang_Li@asus.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*/
#ifndef _MDM_APCDMP_H
#define _MDM_APCDMP_H
#include <linux/ioctl.h>
#define MDM_APCDMP_MAGIC 0x87
#define MDM_APCDMP_IMC726X _IO(MDM_APCDMP_MAGIC, 0)
#define MDM_APCDMP_IMC2230 _IO(MDM_APCDMP_MAGIC, 1)
#define MDM_APCDMP_DEBUG_IMC726X _IO(MDM_APCDMP_MAGIC, 2)
#define MDM_APCDMP_DEBUG_IMC2230 _IO(MDM_APCDMP_MAGIC, 3)
#endif /* _MDM_APCDMP_H */
|