From patchwork Sat Nov 28 21:28:18 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joshua Clayton X-Patchwork-Id: 7717621 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 B64DDBEEE1 for ; Sat, 28 Nov 2015 21:29:31 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id AB2E52054E for ; Sat, 28 Nov 2015 21:29:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C9AAD2041E for ; Sat, 28 Nov 2015 21:29:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752784AbbK1V2i (ORCPT ); Sat, 28 Nov 2015 16:28:38 -0500 Received: from mail-yk0-f175.google.com ([209.85.160.175]:34713 "EHLO mail-yk0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752709AbbK1V2h (ORCPT ); Sat, 28 Nov 2015 16:28:37 -0500 Received: by ykfs79 with SMTP id s79so148852262ykf.1; Sat, 28 Nov 2015 13:28:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=c2oILU78yhJCuzPvZSiQ7AnERHmsrhNrcqZ0IPeIkis=; b=xltZPjNEvNhijNEB1Xk7C5L5RJiZaIKNIO1uiLSLBz6L9rhYnbyYQsnpGot5COWUsy 2xcwWzmqTtlCf8uRCwnTadL5LkA7jP4BcSbe5df7sN/EFkDw10LNTYA5/EGm3+PHSCSA RJEDB6lblHW+E4/Lrwcmb0bgjxuMkpMs8GTukuypKDIJ1oz9BC1l7o9sIUOcHWHENAvA ByA3dHzwfUC1WoGt1GEv5CHe5KEc9qD4hwXXdnJr+ZNFC6c807Mu/c614FkLdiHSgByr Q4/9mYXSPNlsm8wylQZZSZuxMjp0AUV/plQpxrGceh2iyeTsBAIi3+0v9ReLLNJr616p psKA== X-Received: by 10.129.80.138 with SMTP id e132mr45866082ywb.90.1448746116889; Sat, 28 Nov 2015 13:28:36 -0800 (PST) Received: from diplodocus.dhcp.mdfd.or.charter.com (71-95-120-199.dhcp.mdfd.or.charter.com. [71.95.120.199]) by smtp.gmail.com with ESMTPSA id p63sm32798562ywf.8.2015.11.28.13.28.34 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 28 Nov 2015 13:28:35 -0800 (PST) From: Joshua Clayton To: Mark Brown , "GitAuthor: Joshua Clayton" , linux-spi@vger.kernel.org (open list:SPI SUBSYSTEM), linux-kernel@vger.kernel.org (open list) Subject: [PATCH] spi: tools: move spidev_test metadata Date: Sat, 28 Nov 2015 13:28:18 -0800 Message-Id: <1448746103-9809-1-git-send-email-stillcompiling@gmail.com> X-Mailer: git-send-email 2.6.3 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.8 required=5.0 tests=BAYES_00, 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 Now that spidev_test and spidev_fdx have been moved, remove them from the Documentation index and move their .gitignore file. Signed-off-by: Joshua Clayton --- Documentation/spi/.gitignore | 2 -- Documentation/spi/00-INDEX | 4 ---- tools/spi/.gitignore | 2 ++ 3 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 Documentation/spi/.gitignore create mode 100644 tools/spi/.gitignore diff --git a/Documentation/spi/.gitignore b/Documentation/spi/.gitignore deleted file mode 100644 index 4280576..0000000 --- a/Documentation/spi/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -spidev_fdx -spidev_test diff --git a/Documentation/spi/00-INDEX b/Documentation/spi/00-INDEX index a128fa8..4644bf0 100644 --- a/Documentation/spi/00-INDEX +++ b/Documentation/spi/00-INDEX @@ -10,13 +10,9 @@ pxa2xx - PXA2xx SPI master controller build by spi_message fifo wq spidev - Intro to the userspace API for spi devices -spidev_fdx.c - - spidev example file spi-lm70llp - Connecting an LM70-LLP sensor to the kernel via the SPI subsys. spi-sc18is602 - NXP SC18IS602/603 I2C-bus to SPI bridge spi-summary - (Linux) SPI overview. If unsure about SPI or SPI in Linux, start here. -spidev_test.c - - SPI testing utility. diff --git a/tools/spi/.gitignore b/tools/spi/.gitignore new file mode 100644 index 0000000..4280576 --- /dev/null +++ b/tools/spi/.gitignore @@ -0,0 +1,2 @@ +spidev_fdx +spidev_test