rilmodem: Remove drivers/rilmodem/gprs.h

This commit is contained in:
Denis Kenzior 2015-12-03 13:25:47 -06:00
parent 55cedbf109
commit 234dfedbaa
3 changed files with 8 additions and 31 deletions

View File

@ -137,7 +137,6 @@ builtin_sources += drivers/rilmodem/rilmodem.h \
drivers/rilmodem/voicecall.h \
drivers/rilmodem/call-volume.c \
drivers/rilmodem/gprs.c \
drivers/rilmodem/gprs.h \
drivers/rilmodem/gprs-context.c \
drivers/rilmodem/sim.c \
drivers/rilmodem/sms.c \

View File

@ -50,6 +50,14 @@
/* Time between get data status retries */
#define GET_STATUS_TIMER_MS 5000
struct ril_gprs_data {
GRil *ril;
struct ofono_modem *modem;
gboolean ofono_attached;
int rild_status;
int pending_deact_req;
};
/*
* This module is the ofono_gprs_driver implementation for rilmodem.
*

View File

@ -1,30 +0,0 @@
/*
*
* oFono - Open Source Telephony
*
* Copyright (C) 2014 Canonical Ltd.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "drivers/rilmodem/rilutil.h"
struct ril_gprs_data {
GRil *ril;
struct ofono_modem *modem;
gboolean ofono_attached;
int rild_status;
int pending_deact_req;
};