From mboxrd@z Thu Jan 1 00:00:00 1970 From: akpm@linux-foundation.org Subject: [merged] drivers-rtc-rtc-rs5c348c-remove-empty-function.patch removed from -mm tree Date: Mon, 08 Jul 2013 12:34:34 -0700 Message-ID: <51db144a.+ur2oEL2ksuhVD27%akpm@linux-foundation.org> Reply-To: linux-kernel@vger.kernel.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mail.linuxfoundation.org ([140.211.169.12]:51306 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753099Ab3GHTee (ORCPT ); Mon, 8 Jul 2013 15:34:34 -0400 Sender: mm-commits-owner@vger.kernel.org List-Id: mm-commits@vger.kernel.org To: mm-commits@vger.kernel.org, anemo@mba.ocn.ne.jp, sachin.kamat@linaro.org Subject: [merged] drivers-rtc-rtc-rs5c348c-remove-empty-function.patch removed from -mm tree To: sachin.kamat@linaro.org,anemo@mba.ocn.ne.jp,mm-commits@vger.kernel.org From: akpm@linux-foundation.org Date: Mon, 08 Jul 2013 12:34:34 -0700 The patch titled Subject: drivers/rtc/rtc-rs5c348.c: remove empty function has been removed from the -mm tree. Its filename was drivers-rtc-rtc-rs5c348c-remove-empty-function.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Sachin Kamat Subject: drivers/rtc/rtc-rs5c348.c: remove empty function After the switch to devm_* functions and the removal of rtc_device_unregister(), the 'remove' function does not do anything. Delete it. Signed-off-by: Sachin Kamat Acked-by: Atsushi Nemoto Signed-off-by: Andrew Morton --- drivers/rtc/rtc-rs5c348.c | 6 ------ 1 file changed, 6 deletions(-) diff -puN drivers/rtc/rtc-rs5c348.c~drivers-rtc-rtc-rs5c348c-remove-empty-function drivers/rtc/rtc-rs5c348.c --- a/drivers/rtc/rtc-rs5c348.c~drivers-rtc-rtc-rs5c348c-remove-empty-function +++ a/drivers/rtc/rtc-rs5c348.c @@ -218,18 +218,12 @@ static int rs5c348_probe(struct spi_devi return ret; } -static int rs5c348_remove(struct spi_device *spi) -{ - return 0; -}