2 * This file is part of libsamsung-ipc.
4 * Copyright (C) 2012 Paul Kocialkowski <contact@paulk.fr>
6 * libsamsung-ipc is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or
9 * (at your option) any later version.
11 * libsamsung-ipc is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with libsamsung-ipc. If not, see <http://www.gnu.org/licenses/>.
21 #include <samsung-ipc.h>
23 #include "device/crespo/crespo_ipc.h"
24 #include "device/aries/aries_ipc.h"
25 #include "device/galaxys2/galaxys2_ipc.h"
26 #include "device/i9300/i9300_ipc.h"
27 #include "device/maguro/maguro_ipc.h"
28 #include "device/piranha/piranha_ipc.h"
30 #ifndef __IPC_DEVICES_H__
31 #define __IPC_DEVICES_H__
33 struct ipc_device_desc {
38 struct ipc_ops *fmt_ops;
39 struct ipc_ops *rfs_ops;
40 struct ipc_handlers *handlers;
41 struct ipc_gprs_specs *gprs_specs;
42 struct ipc_nv_data_specs *nv_data_specs;
45 extern struct ipc_device_desc ipc_devices[];
46 extern int ipc_devices_count;
50 // vim:ts=4:sw=4:expandtab