From patchwork Tue Aug 7 15:14:11 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Jan_Kundr=C3=A1t?= X-Patchwork-Id: 10558889 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 02FC913BB for ; Tue, 7 Aug 2018 16:30:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E4DE62A696 for ; Tue, 7 Aug 2018 16:30:20 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D6B382A68D; Tue, 7 Aug 2018 16:30:20 +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.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,T_DKIM_INVALID 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 AB8A42A68D for ; Tue, 7 Aug 2018 16:30:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389536AbeHGSpX (ORCPT ); Tue, 7 Aug 2018 14:45:23 -0400 Received: from office2.cesnet.cz ([195.113.144.244]:50748 "EHLO office2.cesnet.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730869AbeHGSpX (ORCPT ); Tue, 7 Aug 2018 14:45:23 -0400 X-Greylist: delayed 460 seconds by postgrey-1.27 at vger.kernel.org; Tue, 07 Aug 2018 14:45:22 EDT Received: from localhost (unknown [IPv6:2001:718:1:2c:7d03:949b:de91:81b]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by office2.cesnet.cz (Postfix) with ESMTPSA id 3967E400064 for ; Tue, 7 Aug 2018 18:22:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cesnet.cz; s=office2; t=1533658958; bh=aBpQeFlhh4RpZg2qcxvn8vjnimUIX6xmYB8D+nHC+kg=; h=Resent-Date:Resent-From:Resent-To:From:Date:Subject:To; b=WXs2YjdhNAHVA8XtBrXe1NP/hdvTTHdROwAdtsmuJIzwdNY3qlC1GUt9pJB0qVRwd uvqaIz0bXKrjz7zAXcCkGZrlYMiUOVJWOCwSSqgG27govdoEsSRPRuijCVF1go+ov8 qSKExEhGoiME5ZWP6x0SYd7dH9mAjO2/fnXjwK4s= Message-Id: <13b08867fe10b633220fafecc2a68bd93092af17.1533658897.git.jan.kundrat@cesnet.cz> From: =?utf-8?q?Jan_Kundr=C3=A1t?= Date: Tue, 7 Aug 2018 17:14:11 +0200 Subject: [PATCH] spi: spidev: Add DT match for Lumentum 21159239 MIME-Version: 1.0 To: linux-spi@vger.kernel.org Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This is an optical channel monitor for DWDM. Some variants of this could be identified as OCMSC04L1101 which is a wee bit more human readable, but not all variants identify themselves like that. Signed-off-by: Jan Kundrát --- drivers/spi/spidev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index cda10719d1d1..69fdfd898875 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -669,6 +669,7 @@ static const struct of_device_id spidev_dt_ids[] = { { .compatible = "lineartechnology,ltc2488" }, { .compatible = "ge,achc" }, { .compatible = "semtech,sx1301" }, + { .compatible = "lumentum,21159239" }, {}, }; MODULE_DEVICE_TABLE(of, spidev_dt_ids);