Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S943982AbcJSUgq (ORCPT ); Wed, 19 Oct 2016 16:36:46 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:37649 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S942038AbcJSUes (ORCPT ); Wed, 19 Oct 2016 16:34:48 -0400 From: Dave Gerlach To: Ulf Hansson , "Rafael J . Wysocki" , Kevin Hilman CC: , , , , Nishanth Menon , Dave Gerlach , Keerthy , Russell King , Tero Kristo , Sudeep Holla , Santosh Shilimkar Subject: [PATCH v2 1/4] PM / Domains: Add generic data pointer to genpd data struct Date: Wed, 19 Oct 2016 15:33:44 -0500 Message-ID: <20161019203347.17893-2-d-gerlach@ti.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20161019203347.17893-1-d-gerlach@ti.com> References: <20161019203347.17893-1-d-gerlach@ti.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 715 Lines: 24 Add a void *data pointer to struct generic_pm_domain_data. Because this exists for each device associated with a genpd it will allow us to assign per-device data if needed on a platform for control of that specific device. Signed-off-by: Dave Gerlach --- include/linux/pm_domain.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h index a09fe5c009c8..9c0a897fe605 100644 --- a/include/linux/pm_domain.h +++ b/include/linux/pm_domain.h @@ -105,6 +105,7 @@ struct generic_pm_domain_data { struct pm_domain_data base; struct gpd_timing_data td; struct notifier_block nb; + void *data; }; #ifdef CONFIG_PM_GENERIC_DOMAINS -- 2.9.3