mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 09:16:33 +00:00
cbcf78330f
Only one of the functions in clock2xxx.h is used in a file other than the one it is declared in, so remove the extra declarations, and make the symbols static. Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
18 lines
385 B
C
18 lines
385 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* OMAP2 clock function prototypes and macros
|
|
*
|
|
* Copyright (C) 2005-2010 Texas Instruments, Inc.
|
|
* Copyright (C) 2004-2010 Nokia Corporation
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_MACH_OMAP2_CLOCK2XXX_H
|
|
#define __ARCH_ARM_MACH_OMAP2_CLOCK2XXX_H
|
|
|
|
#include <linux/clk-provider.h>
|
|
#include "clock.h"
|
|
|
|
unsigned long omap2xxx_clk_get_core_rate(void);
|
|
|
|
#endif
|