diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-06-11 22:50:18 +0200 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-06-11 22:50:18 +0200 |
commit | 956f3c58f5709b2ec715b6d882c2d80d6f5d1ab0 (patch) | |
tree | 0150b59faf5a5949c68dcb60c86b99c752125aa4 | |
parent | c23c98732e0991510faaf9c543a06f9b042c0747 (diff) | |
download | external_libsamsung-ipc-956f3c58f5709b2ec715b6d882c2d80d6f5d1ab0.zip external_libsamsung-ipc-956f3c58f5709b2ec715b6d882c2d80d6f5d1ab0.tar.gz external_libsamsung-ipc-956f3c58f5709b2ec715b6d882c2d80d6f5d1ab0.tar.bz2 |
support new codename and board name for piranha
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
-rw-r--r-- | Android.mk | 2 | ||||
-rw-r--r-- | samsung-ipc/ipc_devices.c | 10 |
2 files changed, 11 insertions, 1 deletions
@@ -35,7 +35,7 @@ ifneq (,$(filter maguro,$(TARGET_DEVICE))) ipc_device_name := maguro endif -ifneq (,$(filter p5100 p3100,$(TARGET_DEVICE))) +ifneq (,$(filter p5100 p3100 espresso3g,$(TARGET_DEVICE))) ipc_device_name := piranha endif diff --git a/samsung-ipc/ipc_devices.c b/samsung-ipc/ipc_devices.c index 13d9892..43a83e5 100644 --- a/samsung-ipc/ipc_devices.c +++ b/samsung-ipc/ipc_devices.c @@ -114,6 +114,16 @@ struct ipc_device_desc ipc_devices[] = { .nv_data_specs = &piranha_nv_data_specs, }, { + .name = "piranha", + .board_name = "omap4 espresso board", + .kernel_version = NULL, + .fmt_ops = &piranha_fmt_ops, + .rfs_ops = &piranha_rfs_ops, + .handlers = &piranha_handlers, + .gprs_specs = &piranha_gprs_specs, + .nv_data_specs = &piranha_nv_data_specs, + }, + { .name = "i9300", .board_name = "smdk4x12", .kernel_version = NULL, |