Received: by 10.213.65.68 with SMTP id h4csp1098907imn; Wed, 14 Mar 2018 09:33:50 -0700 (PDT) X-Google-Smtp-Source: AG47ELtuSZWbElJw0yGMDGB/CQiuNshYoq+P28Vf+uylfUL+2aXU+sPkwalQssL/DmSwqwJSGx6M X-Received: by 10.99.178.6 with SMTP id x6mr4253377pge.98.1521045229933; Wed, 14 Mar 2018 09:33:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521045229; cv=none; d=google.com; s=arc-20160816; b=LtKpdOql6FqlL+Zx5XfIlfJqcN6ISvP9cDZMhFOMA2SHupu6nPMJ2AF1iiky04W7Th drhlDDC4F4GQCmMASLYcWiD8umssXGJxICVuOU23CeYWzq0M8AMaGbou59l79xNhFINK OsmS/Fcd83e/JWnQVs+/9386HTJk9QTJWg3zmkTfiAPzFuiRfBu7SchlehzdI0aVs4vd Up/6nbbENfdKTC5z1KbnGO332IcDIwoUX+n8j+lLLzSrN9C7KaFej7riYdpi/VP2JREx jLxa2NpjfxD8DgRc+bgllZ9sLduU5st0onDtvzdc4U9dlU1pa3eg0JVDwxSgNcZvI3lM lBag== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=r5IVyOY4yLnlvVP3ww3VtvJKVVyKaH+K0/Xrk9LLC7I=; b=kxABXj97olXvqIZwsovFe+uluz1GR04wJNKy3FMLmRqGLUyiB2TbwAUhfip966ar7y eNlhkdNIYKsqCiUzs4JLm6iLhlhjXWdpFbM02f2VnB7a8Mq5pApu9AFlCQD9uVFX/8fp a25hKru8gYlv+pVAe4z8u/mW/J0GcSAqOub6dSby5RLHqSP3/PfaArPe5h9N8XCgdrTS hAQsM++QOHsublcyHR/A0oU/+QvIa3MjyiDQEYwbZyQjWMUPcnx4OmUqvq59TEkDow+b 2w7QNZQf6iexmee0L2MCuHKLEzHXt8ROcJVNmOTlBznb/EYpYNg0h6daommqB9/HNvyT k8cQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p26-v6si1890681pli.534.2018.03.14.09.33.36; Wed, 14 Mar 2018 09:33:49 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752052AbeCNQcK (ORCPT + 99 others); Wed, 14 Mar 2018 12:32:10 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:37066 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751381AbeCNQcI (ORCPT ); Wed, 14 Mar 2018 12:32:08 -0400 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id E4FC610DB; Wed, 14 Mar 2018 16:32:07 +0000 (UTC) Date: Wed, 14 Mar 2018 17:32:07 +0100 From: Greg Kroah-Hartman To: Arnd Bergmann Cc: linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org, Lars-Peter Clausen , linux-iio@vger.kernel.org, Peter Meerwald-Stadler , Hartmut Knaack , Jonathan Cameron Subject: Re: [PATCH 47/47] staging: iio: remove iio-trig-bfin-timer driver Message-ID: <20180314163207.GA4279@kroah.com> References: <20180314153603.3127932-1-arnd@arndb.de> <20180314153603.3127932-48-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180314153603.3127932-48-arnd@arndb.de> User-Agent: Mutt/1.9.4 (2018-02-28) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Mar 14, 2018 at 04:36:00PM +0100, Arnd Bergmann wrote: > The blackfin architecture is getting removed, so the timer trigger > driver is now obsolete. Since this is the last remaining iio trigger > driver in staging, I'm removing the entire directory. > > I'm not sure about the other staging iio drivers though: almost > all of them are for Analog Devices devices like this one. They > are likely used along with blackfin SoCs, but could easily be > used on any others as well. > > It might be time to consider whether they should be removed, but > it doesn't feel like a decision that I should be making. The IIO driver maintainer/developers are talking about that currently, I think they have a plan for those other drivers. > Signed-off-by: Arnd Bergmann Acked-by: Greg Kroah-Hartman