aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/ipc_devices.h
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2012-07-05 17:54:25 +0200
committerPaul Kocialkowski <contact@paulk.fr>2012-07-05 19:14:37 +0200
commit84cd42f10be74c0a60545c2035876e3beca644a3 (patch)
treeb78334b1d9ba9ce2ff6d5ac65cd4b2c6b0130bd9 /samsung-ipc/ipc_devices.h
parent2eea520884474f4eefcf03815d52dfaac9e03cce (diff)
downloadexternal_libsamsung-ipc-84cd42f10be74c0a60545c2035876e3beca644a3.zip
external_libsamsung-ipc-84cd42f10be74c0a60545c2035876e3beca644a3.tar.gz
external_libsamsung-ipc-84cd42f10be74c0a60545c2035876e3beca644a3.tar.bz2
XMM6260: Split code into galaxys2, maguro and xmm2620 (shared code) devices
* Moved maguro and galaxys2 loaders to proper folders * Renamed i9100 to galaxys2 and i9250 to maguro * Device-specific ops, handlers, gprs_specs and nv_data_specs on XMM2620 devices though most data/functions are still shared in xmm2620_ipc * Removed radio_parts from modemctl_io_data * Moved CRC calculate function to xmm2620_loader * Moved io_helpers functions to xmm2620_loader * Listed include headers in each file instead of using common.h * Prefixed remaining xmm2620 files Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'samsung-ipc/ipc_devices.h')
-rw-r--r--samsung-ipc/ipc_devices.h25
1 files changed, 15 insertions, 10 deletions
diff --git a/samsung-ipc/ipc_devices.h b/samsung-ipc/ipc_devices.h
index a780c98..2325878 100644
--- a/samsung-ipc/ipc_devices.h
+++ b/samsung-ipc/ipc_devices.h
@@ -57,16 +57,21 @@ extern struct ipc_ops aries_rfs_ops;
extern struct ipc_handlers aries_default_handlers;
extern struct ipc_gprs_specs aries_gprs_specs;
-// xmm6260
-// Galaxy S2 (I9100)
-// Galaxy Nexus (I9250)
-
-extern struct ipc_handlers xmm6260_default_handlers;
-extern struct ipc_ops xmm6260_rfs_ops;
-extern struct ipc_ops xmm6260_i9100_fmt_ops;
-extern struct ipc_ops xmm6260_i9250_fmt_ops;
-extern struct ipc_gprs_specs xmm6260_gprs_specs;
-extern struct ipc_gprs_specs xmm6260_nv_data_specs;
+// galaxys2
+
+extern struct ipc_ops galaxys2_fmt_ops;
+extern struct ipc_ops galaxys2_fmt_ops;
+extern struct ipc_ops galaxys2_rfs_ops;
+extern struct ipc_handlers galaxys2_default_handlers;
+extern struct ipc_gprs_specs galaxys2_gprs_specs;
+
+// maguro
+
+extern struct ipc_ops maguro_fmt_ops;
+extern struct ipc_ops maguro_rfs_ops;
+extern struct ipc_handlers maguro_default_handlers;
+extern struct ipc_gprs_specs maguro_gprs_specs;
+extern struct ipc_nv_data_specs maguro_nv_data_specs;
#endif