mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
628479a8ea
The DPLL USB can generate higher speed (x2) than the regular ones. The max multiplication value is then twice the previous value. Fix both max_mult and max_div with that correct values. Change the max_div variable type to u16 to allow storing up to 256. Replace as well the define with the value to avoid unneeded indirection and provide a better readability. Remove the defines that become useless. Signed-off-by: Benoit Cousson <b-cousson@ti.com> Cc: Paul Walmsley <paul@pwsan.com> Cc: Rajendra Nayak <rnayak@ti.com> Signed-off-by: Paul Walmsley <paul@pwsan.com>
14 lines
265 B
C
14 lines
265 B
C
/*
|
|
* OMAP4 clock function prototypes and macros
|
|
*
|
|
* Copyright (C) 2009 Texas Instruments, Inc.
|
|
* Copyright (C) 2010 Nokia Corporation
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_MACH_OMAP2_CLOCK44XX_H
|
|
#define __ARCH_ARM_MACH_OMAP2_CLOCK44XX_H
|
|
|
|
int omap4xxx_clk_init(void);
|
|
|
|
#endif
|