From patchwork Sat Jan 3 09:04:44 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Barry Song <21cnbao@gmail.com> X-Patchwork-Id: 5564961 Return-Path: X-Original-To: patchwork-linux-spi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E14A9BF6C3 for ; Mon, 5 Jan 2015 05:36:03 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 197AE20166 for ; Mon, 5 Jan 2015 05:36:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4FCA020165 for ; Mon, 5 Jan 2015 05:36:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751033AbbAEFgA (ORCPT ); Mon, 5 Jan 2015 00:36:00 -0500 Received: from mail-wg0-f54.google.com ([74.125.82.54]:39445 "EHLO mail-wg0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750996AbbAEFgA (ORCPT ); Mon, 5 Jan 2015 00:36:00 -0500 Received: by mail-wg0-f54.google.com with SMTP id z12so9099875wgg.27 for ; Sun, 04 Jan 2015 21:35:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=ohlx1juOD0SyvPE0MlEb56qcVypjNXx3Yp2eQqkFHAg=; b=oy53TT4K6YO2BHoI5uEjKiDJmvwscOYL7Ifs0pMnBc9l8UbgzDv++EjlqPaX7O06Li 0IdU1p18VkOJo8XASC24aF0473Y4pcWGZ75AU+TgGCIiQBSx/iy7KZrzuOvzd/P8gM5e oH11nwH/qaYJ/O/RTNLhhlx02a6gUSxkn2EeSunUzTbocZTxs714URqZkQPMrm9O+Rzo 6z7eKTRXqCvc/oLWPsU9TzwkI5G4ZNsq9ItttLKEkR5mwBnwzXh9a2nBs2s1ABBphqVd +sVmeuW2viuv4kKEYN9ypbU6d/ezzUlWB4w9Bo/jNBberRHL6NzxtyDZdY4ndWfTVat3 PxDA== X-Received: by 10.194.57.43 with SMTP id f11mr169390301wjq.6.1420436158748; Sun, 04 Jan 2015 21:35:58 -0800 (PST) Received: from localhost.localdomain ([117.136.8.59]) by mx.google.com with ESMTPSA id kn7sm67018146wjc.45.2015.01.04.21.35.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 04 Jan 2015 21:35:57 -0800 (PST) From: Barry Song <21cnbao@gmail.com> To: broonie@kernel.org, linux-spi@vger.kernel.org Cc: workgroup.linux@csr.com, Barry Song Subject: [PATCH] spi: sirf: drop redundant sirf,marco-spi compatible string Date: Sat, 3 Jan 2015 17:04:44 +0800 Message-Id: <1420275884-10942-1-git-send-email-21cnbao@gmail.com> X-Mailer: git-send-email 1.9.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=-5.5 required=5.0 tests=BAYES_00, DATE_IN_PAST_24_48, DKIM_ADSP_CUSTOM_MED,DKIM_SIGNED,FREEMAIL_FROM,RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham 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 From: Barry Song "sirf,marco-spi" is redundant as all SPI controllers in CSR SiRFSoC are compatible with prima2-spi. at the same time, the whole marco project was dropped and its replacement atlas7 is also compatible with prima2 in SPI. Signed-off-by: Barry Song --- drivers/spi/spi-sirf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/spi/spi-sirf.c b/drivers/spi/spi-sirf.c index d075191..f5715c9 100644 --- a/drivers/spi/spi-sirf.c +++ b/drivers/spi/spi-sirf.c @@ -818,7 +818,6 @@ static SIMPLE_DEV_PM_OPS(spi_sirfsoc_pm_ops, spi_sirfsoc_suspend, static const struct of_device_id spi_sirfsoc_of_match[] = { { .compatible = "sirf,prima2-spi", }, - { .compatible = "sirf,marco-spi", }, {} }; MODULE_DEVICE_TABLE(of, spi_sirfsoc_of_match);