2014-05-02 20:31:07 -07:00
|
|
|
/*
|
2020-02-04 13:44:48 +02:00
|
|
|
* Copyright (C) 2016 Samsung Electronics.
|
2014-05-02 20:31:07 -07:00
|
|
|
*
|
|
|
|
* This software is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
|
|
* may be copied, distributed, and modified under those terms.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-04 13:44:48 +02:00
|
|
|
#ifndef __MODEM_DUMP_H__
|
|
|
|
#define __MODEM_DUMP_H__
|
2014-05-02 20:31:07 -07:00
|
|
|
|
2020-02-04 13:44:48 +02:00
|
|
|
#include <linux/workqueue.h>
|
|
|
|
#include "modem_prj.h"
|
2014-05-02 20:31:07 -07:00
|
|
|
|
2020-02-04 13:44:48 +02:00
|
|
|
int save_shmem_dump(struct link_device *mld, struct io_device *iod,
|
|
|
|
unsigned long arg);
|
|
|
|
int save_acpm_dump(struct link_device *mld, struct io_device *iod,
|
|
|
|
unsigned long arg);
|
|
|
|
int save_vss_dump(struct link_device *mld, struct io_device *iod,
|
|
|
|
unsigned long arg);
|
2014-05-02 20:31:07 -07:00
|
|
|
#endif
|