Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b42487f1 authored by Hanumant Singh's avatar Hanumant Singh
Browse files

esoc: mdm: Add command engine for mdm9x35



Use a common command engine for mdm9x25 and mdm9x35.

Change-Id: I8c02ac07bdf77b801668e795ef89a3fa35ab2da7
Signed-off-by: default avatarHanumant Singh <hanumant@codeaurora.org>
parent 9fd27229
Loading
Loading
Loading
Loading
+14 −2
Original line number Diff line number Diff line
/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
/* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -234,11 +234,23 @@ ssr_err:
	return ret;
}

static struct esoc_compat compat_table[] = {
	{	.name = "MDM9x25",
		.data = NULL,
	},
	{
		.name = "MDM9x35",
		.data = NULL,
	},
};

static struct esoc_drv esoc_ssr_drv = {
	.owner = THIS_MODULE,
	.probe = esoc_ssr_probe,
	.compat_table = compat_table,
	.compat_entries = ARRAY_SIZE(compat_table),
	.driver = {
		.name = "MDM9x25",
		.name = "mdm-4x",
	},
};