From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 601DBC4742C for ; Fri, 13 Nov 2020 21:18:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F41252224F for ; Fri, 13 Nov 2020 21:18:27 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="v18FNRh8" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726416AbgKMVSW (ORCPT ); Fri, 13 Nov 2020 16:18:22 -0500 Received: from mail.kernel.org ([198.145.29.99]:38884 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726081AbgKMVSD (ORCPT ); Fri, 13 Nov 2020 16:18:03 -0500 Received: from mail-ot1-f53.google.com (mail-ot1-f53.google.com [209.85.210.53]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 5FCC22224F for ; Fri, 13 Nov 2020 21:18:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1605302282; bh=+7uZtyFfxiXEKVeQpv6/pLLMrZ72mbGmk7V7tEh5Ik4=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=v18FNRh88oFNkC3hGUlYiBhQi0B+DtQepqj4ak0eZpuVaUc9cJiJ6v+tQvyi2rCCe hOHQi6MDq3Lxwz+RcO33RTwdEC/dgufdb+4cu/BFsE1R9Yy9dSuV0Zs2OTE97Y+v1M UlMo0Awdfyk5f9wOd4uVES19HcaT0kqoQ8huMTwk= Received: by mail-ot1-f53.google.com with SMTP id n11so10239661ota.2 for ; Fri, 13 Nov 2020 13:18:02 -0800 (PST) X-Gm-Message-State: AOAM530LgvXVsI3daHBvi60B6LfHoBqmV2tOfb70nMyGmcCFUDcjm2/c zEmStAvKm2cNfegcOKGqwRK8gVtdTm5IwO1zkw== X-Google-Smtp-Source: ABdhPJyqj1mFM0zw1XJGVp42TNzwu1QB00J1epcSQbwxSk/CM+uigzVdtqh7OKVnHAtNVeo9Dbbra6RqTYUv5WR6LCA= X-Received: by 2002:a05:6830:2259:: with SMTP id t25mr3033613otd.192.1605302281605; Fri, 13 Nov 2020 13:18:01 -0800 (PST) MIME-Version: 1.0 References: <20201113205233.827493-1-rkir@google.com> <20201113210730.GA1992396@bogus> In-Reply-To: From: Rob Herring Date: Fri, 13 Nov 2020 15:17:50 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH] drivers: rtc: retire RTC_DRV_GOLDFISH To: Roman Kiryanov Cc: Paul Walmsley , Miodrag Dinic , LKML , Lingfeng Yang Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 13, 2020 at 3:13 PM Roman Kiryanov wrote: > > Hi Rob, thank you for looking into this. > > On Fri, Nov 13, 2020 at 1:07 PM Rob Herring wrote: > > > > On Fri, Nov 13, 2020 at 12:52:33PM -0800, rkir@google.com wrote: > > > From: Roman Kiryanov > > > > > > The only user of RTC_DRV_GOLDFISH is > > > the MIPS flavor of Android Studio Emulator > > > (goldfish) which should be also retired. > > > > > > Signed-off-by: Roman Kiryanov > > > --- > > > arch/riscv/Kconfig.socs | 1 - > > > drivers/rtc/Kconfig | 10 -- > > > drivers/rtc/Makefile | 1 - > > > drivers/rtc/rtc-goldfish.c | 216 ------------------------------------- > > > 4 files changed, 228 deletions(-) > > > delete mode 100644 drivers/rtc/rtc-goldfish.c > > > > What about the binding and MAINTAINERS? > > My bad, I will update those files too. Though the binding is still used in arch/mips/generic/board-ranchu.c and arch/mips/boot/dts/loongson/loongson64v_4core_virtio.dts. The latter was just added recently, so maybe premature to remove things? Rob