X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fclk-uclass.h;h=dac42dab3681287bbe777a2effea7a25f5a1dfbf;hb=d789a8259e3b3b77e3eb2b090373ab2cbc225629;hp=75933eb8841fb86bdf7efc999dfe0a4bffa68928;hpb=ab21ecef7a38dd211fe6db35c6e60800445eb6a2;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/clk-uclass.h b/include/clk-uclass.h index 75933eb..dac42da 100644 --- a/include/clk-uclass.h +++ b/include/clk-uclass.h @@ -1,9 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 2015 Google, Inc * Written by Simon Glass * Copyright (c) 2016, NVIDIA CORPORATION. - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _CLK_UCLASS_H @@ -54,14 +53,14 @@ struct clk_ops { */ int (*request)(struct clk *clock); /** - * free - Free a previously requested clock. + * rfree - Free a previously requested clock. * * This is the implementation of the client clk_free() API. * * @clock: The clock to free. * @return 0 if OK, or a negative error code. */ - int (*free)(struct clk *clock); + int (*rfree)(struct clk *clock); /** * get_rate() - Get current clock rate. *