From patchwork Fri Sep 4 08:05:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jarkko Nikula X-Patchwork-Id: 7120301 Return-Path: X-Original-To: patchwork-linux-spi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 111F99F7CA for ; Fri, 4 Sep 2015 08:06:38 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4B41F20827 for ; Fri, 4 Sep 2015 08:06:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 64826206A0 for ; Fri, 4 Sep 2015 08:06:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752006AbbIDIGX (ORCPT ); Fri, 4 Sep 2015 04:06:23 -0400 Received: from mga09.intel.com ([134.134.136.24]:57968 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756915AbbIDIGK (ORCPT ); Fri, 4 Sep 2015 04:06:10 -0400 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 04 Sep 2015 01:06:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,467,1437462000"; d="scan'208";a="762156022" Received: from mylly.fi.intel.com (HELO mylly.fi.intel.com.) ([10.237.72.156]) by orsmga001.jf.intel.com with ESMTP; 04 Sep 2015 01:06:07 -0700 From: Jarkko Nikula To: linux-arm-kernel@lists.infradead.org Cc: linux-spi@vger.kernel.org, Russell King , Mark Brown , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Jarkko Nikula , Subject: [PATCH] ARM: pxa: ssp: Fix build error by removing originally incorrect DT binding Date: Fri, 4 Sep 2015 11:05:40 +0300 Message-Id: <1441353940-9262-1-git-send-email-jarkko.nikula@linux.intel.com> X-Mailer: git-send-email 2.5.1 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Commit 03fbf488cece ("spi: pxa2xx: Differentiate Intel LPSS types") caused build error here because it removed the type LPSS_SSP and I didn't notice the type was used here too. I believe commit a6e56c28a178 ("ARM: pxa: ssp: add DT bindings") added it accidentally by copying all enum pxa_ssp_type types from include/linux/pxa2xx_ssp.h even LPSS_SSP was for Intel LPSS SPI devices. Fix the build error by removing this incorrect binding. Signed-off-by: Jarkko Nikula Reported-by: Axel Lin Cc: # 4.2 --- Sorry if you got this multiple times day before yesterday. I had problems with two addresses bouncing back without any obvious errors in the git send-email command or those failing addresses and linux-spi archive didn't show the patch either. I'm surrounding now the stable@vger.kernel.org by angled brackets because I think that was the problem here as the "# 4.2" got added into address. --- arch/arm/plat-pxa/ssp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/plat-pxa/ssp.c b/arch/arm/plat-pxa/ssp.c index ad9529cc4203..daa1a65f2eb7 100644 --- a/arch/arm/plat-pxa/ssp.c +++ b/arch/arm/plat-pxa/ssp.c @@ -107,7 +107,6 @@ static const struct of_device_id pxa_ssp_of_ids[] = { { .compatible = "mvrl,pxa168-ssp", .data = (void *) PXA168_SSP }, { .compatible = "mrvl,pxa910-ssp", .data = (void *) PXA910_SSP }, { .compatible = "mrvl,ce4100-ssp", .data = (void *) CE4100_SSP }, - { .compatible = "mrvl,lpss-ssp", .data = (void *) LPSS_SSP }, { }, }; MODULE_DEVICE_TABLE(of, pxa_ssp_of_ids);