From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:48514 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S941402AbcJZISI (ORCPT ); Wed, 26 Oct 2016 04:18:08 -0400 Subject: Patch "watchdog: mt7621_wdt: Remove assignment of dev pointer" has been added to the 4.8-stable tree To: linux@roeck-us.net, gregkh@linuxfoundation.org, wim@iguana.be Cc: , From: Date: Wed, 26 Oct 2016 10:16:27 +0200 Message-ID: <1477469787175157@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled watchdog: mt7621_wdt: Remove assignment of dev pointer to the 4.8-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: watchdog-mt7621_wdt-remove-assignment-of-dev-pointer.patch and it can be found in the queue-4.8 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From 8355b3f94425ac8b9683869354be935795f055ca Mon Sep 17 00:00:00 2001 From: Guenter Roeck Date: Mon, 12 Sep 2016 06:16:51 -0700 Subject: watchdog: mt7621_wdt: Remove assignment of dev pointer From: Guenter Roeck commit 8355b3f94425ac8b9683869354be935795f055ca upstream. Commit 0254e953537c ("watchdog: Drop pointer to watchdog device from struct watchdog_device") removed the dev pointer from struct watchdog_device, but this driver was still assigning it, leading to a compilation error: drivers/watchdog/mt7621_wdt.c: In function 'mt7621_wdt_probe': drivers/watchdog/mt7621_wdt.c:142:16: error: 'struct watchdog_device' has no member named 'dev' Fix this by removing the assignment. Fixes: 0254e953537c ("watchdog: Drop pointer to watchdog device ...") Signed-off-by: Guenter Roeck Signed-off-by: Wim Van Sebroeck Signed-off-by: Greg Kroah-Hartman --- drivers/watchdog/mt7621_wdt.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/watchdog/mt7621_wdt.c +++ b/drivers/watchdog/mt7621_wdt.c @@ -139,7 +139,6 @@ static int mt7621_wdt_probe(struct platf if (!IS_ERR(mt7621_wdt_reset)) reset_control_deassert(mt7621_wdt_reset); - mt7621_wdt_dev.dev = &pdev->dev; mt7621_wdt_dev.bootstatus = mt7621_wdt_bootcause(); watchdog_init_timeout(&mt7621_wdt_dev, mt7621_wdt_dev.max_timeout, Patches currently in stable-queue which might be from linux@roeck-us.net are queue-4.8/watchdog-rt2880_wdt-remove-assignment-of-dev-pointer.patch queue-4.8/pstore-core-drop-cmpxchg-based-updates.patch queue-4.8/watchdog-mt7621_wdt-remove-assignment-of-dev-pointer.patch