From patchwork Mon Jul 23 14:00:15 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Mack X-Patchwork-Id: 10540371 X-Patchwork-Delegate: sameo@linux.intel.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id DD48D157A for ; Mon, 23 Jul 2018 14:00:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CCF4E28AC3 for ; Mon, 23 Jul 2018 14:00:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C108328B1E; Mon, 23 Jul 2018 14:00:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6F9AA28AC3 for ; Mon, 23 Jul 2018 14:00:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388205AbeGWPCE (ORCPT ); Mon, 23 Jul 2018 11:02:04 -0400 Received: from mail.bugwerft.de ([46.23.86.59]:49964 "EHLO mail.bugwerft.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388125AbeGWPCE (ORCPT ); Mon, 23 Jul 2018 11:02:04 -0400 Received: from localhost.localdomain (i577BC19A.versanet.de [87.123.193.154]) by mail.bugwerft.de (Postfix) with ESMTPSA id B41DC2916B2; Mon, 23 Jul 2018 14:00:16 +0000 (UTC) From: Daniel Mack To: sameo@linux.intel.com Cc: linux-wireless@vger.kernel.org, colin.king@canonical.com, shikha.singh@st.com, Daniel Mack , devicetree@vger.kernel.org Subject: [PATCH 10/10] NFC: st95hf: add of match table Date: Mon, 23 Jul 2018 16:00:15 +0200 Message-Id: <20180723140015.11663-11-daniel@zonque.org> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180723140015.11663-1-daniel@zonque.org> References: <20180723140015.11663-1-daniel@zonque.org> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add a match table for device tree compatible strings. Interestingly, a document describing the bindings already exists since a while, but users currently reply on the implicit matching in the drivers core. Signed-off-by: Daniel Mack Cc: devicetree@vger.kernel.org --- drivers/nfc/st95hf/core.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/nfc/st95hf/core.c b/drivers/nfc/st95hf/core.c index 4db3c020921c..5a01b454fbc4 100644 --- a/drivers/nfc/st95hf/core.c +++ b/drivers/nfc/st95hf/core.c @@ -1012,6 +1012,12 @@ static const struct spi_device_id st95hf_id[] = { }; MODULE_DEVICE_TABLE(spi, st95hf_id); +static const struct of_device_id st95hf_of_match[] = { + { .compatible = "st,st95hf", }, + {} +}; +MODULE_DEVICE_TABLE(of, st95hf_of_match); + static int st95hf_probe(struct spi_device *nfc_spi_dev) { int ret; @@ -1189,6 +1195,7 @@ static struct spi_driver st95hf_driver = { .driver = { .name = "st95hf", .owner = THIS_MODULE, + .of_match_table = st95hf_of_match, }, .id_table = st95hf_id, .probe = st95hf_probe,