From patchwork Thu Dec 15 15:24:38 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Loic Pallardy X-Patchwork-Id: 88169 Delivered-To: patch@linaro.org Received: by 10.140.20.101 with SMTP id 92csp856897qgi; Thu, 15 Dec 2016 07:24:58 -0800 (PST) X-Received: by 10.98.159.67 with SMTP id g64mr2748454pfe.93.1481815497927; Thu, 15 Dec 2016 07:24:57 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id k4si2975199plb.70.2016.12.15.07.24.57; Thu, 15 Dec 2016 07:24:57 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758466AbcLOPYz (ORCPT + 25 others); Thu, 15 Dec 2016 10:24:55 -0500 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:19503 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750801AbcLOPYx (ORCPT ); Thu, 15 Dec 2016 10:24:53 -0500 Received: from pps.filterd (m0046668.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.11/8.16.0.11) with SMTP id uBFFM2qV019463; Thu, 15 Dec 2016 16:24:49 +0100 Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-.pphosted.com with ESMTP id 27bdnbxxuf-1 (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 15 Dec 2016 16:24:49 +0100 Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id B661634; Thu, 15 Dec 2016 15:24:48 +0000 (GMT) Received: from Webmail-eu.st.com (safex1hubcas4.st.com [10.75.90.69]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 8867327CF; Thu, 15 Dec 2016 15:24:48 +0000 (GMT) Received: from localhost (10.201.23.23) by webmail-eu.st.com (10.75.90.13) with Microsoft SMTP Server (TLS) id 8.3.444.0; Thu, 15 Dec 2016 16:24:48 +0100 From: Loic Pallardy To: , CC: , , , Subject: [PATCH 1/1] mailbox: sti: add MODULE_DEVICE_TABLE for module autoload Date: Thu, 15 Dec 2016 16:24:38 +0100 Message-ID: <1481815478-2688-1-git-send-email-loic.pallardy@st.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:, , definitions=2016-12-15_09:, , signatures=0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Loic Pallardy --- drivers/mailbox/mailbox-sti.c | 1 + 1 file changed, 1 insertion(+) -- 1.9.1 Acked-by: Lee Jones diff --git a/drivers/mailbox/mailbox-sti.c b/drivers/mailbox/mailbox-sti.c index a334db5..41bcd33 100644 --- a/drivers/mailbox/mailbox-sti.c +++ b/drivers/mailbox/mailbox-sti.c @@ -403,6 +403,7 @@ static struct mbox_chan *sti_mbox_xlate(struct mbox_controller *mbox, }, { } }; +MODULE_DEVICE_TABLE(of, sti_mailbox_match); static int sti_mbox_probe(struct platform_device *pdev) {