From patchwork Mon May 6 04:23:57 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2522471 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 8E145400ED for ; Mon, 6 May 2013 04:37:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752608Ab3EFEhp (ORCPT ); Mon, 6 May 2013 00:37:45 -0400 Received: from mail-pa0-f43.google.com ([209.85.220.43]:43737 "EHLO mail-pa0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752602Ab3EFEhp (ORCPT ); Mon, 6 May 2013 00:37:45 -0400 Received: by mail-pa0-f43.google.com with SMTP id hz10so1836715pad.16 for ; Sun, 05 May 2013 21:37:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:x-gm-message-state; bh=6G3M6E/6EOnlIJGX/AAo87cJxwHNUvtldThkVdozOig=; b=Akx5s9vUj+ShiuiYNsfwbbVWuPu1zOBxd/GVMXxO12HEVyMEOWO+Y4hIo7p6XJwZoO xjOEnzPGtegm9/2A0DOnuJFIBHV8EjUsnPi1VZfqlD7i0hF7EeT7oLDb/NHWEdrVzUsP 2aPY37WcxIcRQeR2m5ykNSNcdpdVjVgafe2ri4hEHUZZu2c4qHuIuGXV9IBeIGvM4bK3 DRGZyGE6Ot+Ex8mAubPO3BghvbIxudKRtCAyMJT6pcZJuwKGm60opnnx6Nh9NToLPWNW yxVHZIgpnB2piuSjOrTt3oABdUnCAGO5e9ho7ZbNfsAwFMrHUnZANtV/S9ZRgBp31Ftg aRVA== X-Received: by 10.66.102.33 with SMTP id fl1mr25298375pab.52.1367815064694; Sun, 05 May 2013 21:37:44 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id at4sm22178298pbc.40.2013.05.05.21.37.42 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 05 May 2013 21:37:44 -0700 (PDT) From: Sachin Kamat To: linux-input@vger.kernel.org Cc: dmitry.torokhov@gmail.com, sachin.kamat@linaro.org, Viresh Kumar Subject: [PATCH 17/20] Input: spear-keyboard - Remove redundant platform_set_drvdata() Date: Mon, 6 May 2013 09:53:57 +0530 Message-Id: <1367814240-8959-17-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1367814240-8959-1-git-send-email-sachin.kamat@linaro.org> References: <1367814240-8959-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQm1AFQ6DT+luns32JKUhTiFkc2qmPZA6RRmgZ9+5e+drDu/T9JjX+GGn4u7LG8HGMS0mHmh Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org Commit 0998d06310 (device-core: Ensure drvdata = NULL when no driver is bound) removes the need to set driver data field to NULL. Signed-off-by: Sachin Kamat Cc: Viresh Kumar Acked-by: Viresh Kumar --- drivers/input/keyboard/spear-keyboard.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/input/keyboard/spear-keyboard.c b/drivers/input/keyboard/spear-keyboard.c index cb1e8f6..7111124 100644 --- a/drivers/input/keyboard/spear-keyboard.c +++ b/drivers/input/keyboard/spear-keyboard.c @@ -290,7 +290,6 @@ static int spear_kbd_remove(struct platform_device *pdev) clk_unprepare(kbd->clk); device_init_wakeup(&pdev->dev, 0); - platform_set_drvdata(pdev, NULL); return 0; }