From: Geert Uytterhoeven Date: Tue, 14 Jul 2020 12:56:25 +0000 (+0200) Subject: PM: domains: Restore comment indentation for generic_pm_domain.child_links X-Git-Tag: baikal/aarch64/sdk5.10~170 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=6269d5dc4aab44295ea9d6ad3e133ef7c1a1cb23;p=kernel.git PM: domains: Restore comment indentation for generic_pm_domain.child_links commit caccd14aa0579033b73b371a1b00e487479c38af upstream. The rename of generic_pm_domain.slave_links to generic_pm_domain.child_links accidentally dropped the TAB to align the member's comment. Re-add the lost TAB to restore indentation. Fixes: 8d89926c46f39c6a ("PM: domains: Fix up terminology with parent/child") Signed-off-by: Geert Uytterhoeven [ rjw: Minor subject edit ] Signed-off-by: Rafael J. Wysocki Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h index 3dffbfa627082..4476994d40c94 100644 --- a/include/linux/pm_domain.h +++ b/include/linux/pm_domain.h @@ -96,7 +96,7 @@ struct generic_pm_domain { struct dev_pm_domain domain; /* PM domain operations */ struct list_head gpd_list_node; /* Node in the global PM domains list */ struct list_head parent_links; /* Links with PM domain as a parent */ - struct list_head child_links;/* Links with PM domain as a child */ + struct list_head child_links; /* Links with PM domain as a child */ struct list_head dev_list; /* List of devices */ struct dev_power_governor *gov; struct work_struct power_off_work;