Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933023AbbFVG1t (ORCPT ); Mon, 22 Jun 2015 02:27:49 -0400 Received: from bhuna.collabora.co.uk ([93.93.135.160]:40580 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755990AbbFVG1c (ORCPT ); Mon, 22 Jun 2015 02:27:32 -0400 From: Javier Martinez Canillas To: Olof Johansson Cc: Doug Anderson , linux-kernel@vger.kernel.org, Gwendal Grignou , Javier Martinez Canillas Subject: [RESEND PATCH 3/3] platform/chrome: cros_ec_dev - Add a platform device ID table Date: Mon, 22 Jun 2015 08:27:20 +0200 Message-Id: <1434954440-8279-4-git-send-email-javier.martinez@collabora.co.uk> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1434954440-8279-1-git-send-email-javier.martinez@collabora.co.uk> References: <1434954440-8279-1-git-send-email-javier.martinez@collabora.co.uk> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1149 Lines: 33 If the cros_ec_dev driver is built as a module, modalias information is not filled so the module is not autoloaded. Add a platform device table and use the MODULE_DEVICE_TABLE() macro to export that information in the module so user-space can match the modalias uevent and autoload it. Signed-off-by: Javier Martinez Canillas --- drivers/platform/chrome/cros_ec_dev.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/platform/chrome/cros_ec_dev.c b/drivers/platform/chrome/cros_ec_dev.c index 6090d0b2826f..4232c8136939 100644 --- a/drivers/platform/chrome/cros_ec_dev.c +++ b/drivers/platform/chrome/cros_ec_dev.c @@ -216,6 +216,12 @@ static int ec_device_remove(struct platform_device *pdev) return 0; } +static const struct platform_device_id cros_ec_id[] = { + { "cros-ec-ctl", 0 }, + { /* sentinel */ }, +}; +MODULE_DEVICE_TABLE(platform, cros_ec_id); + static struct platform_driver cros_ec_dev_driver = { .driver = { .name = "cros-ec-ctl", -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in Please read the FAQ at http://www.tux.org/lkml/