X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fpower-domain-uclass.h;h=acf749b38edfca39f537264f684473fe276915bb;hb=22b56f428d40c681c0bac1c4b042980b160d591d;hp=802233d17f5870acadc9f3a2b4b8d130a87f067e;hpb=821560fd8e43eecc208c1c52ad24faadb6b52703;p=oweals%2Fu-boot.git diff --git a/include/power-domain-uclass.h b/include/power-domain-uclass.h index 802233d17f..acf749b38e 100644 --- a/include/power-domain-uclass.h +++ b/include/power-domain-uclass.h @@ -1,7 +1,6 @@ +/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (c) 2016, NVIDIA CORPORATION. - * - * SPDX-License-Identifier: GPL-2.0 */ #ifndef _POWER_DOMAIN_UCLASS_H @@ -55,14 +54,14 @@ struct power_domain_ops { */ int (*request)(struct power_domain *power_domain); /** - * free - Free a previously requested power domain. + * rfree - Free a previously requested power domain. * * This is the implementation of the client power_domain_free() API. * * @power_domain: The power domain to free. * @return 0 if OK, or a negative error code. */ - int (*free)(struct power_domain *power_domain); + int (*rfree)(struct power_domain *power_domain); /** * on - Power on a power domain. *