2009-12-08 11:31:44 -07:00
|
|
|
/*
|
|
|
|
* OMAP4-specific clock framework functions
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Texas Instruments, Inc.
|
|
|
|
*
|
|
|
|
* Rajendra Nayak (rnayak@ti.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include "clock.h"
|
|
|
|
|
2010-02-15 10:27:25 -07:00
|
|
|
const struct clkops omap4_clkops_noncore_dpll_ops = {
|
2009-12-08 11:31:44 -07:00
|
|
|
.enable = &omap3_noncore_dpll_enable,
|
|
|
|
.disable = &omap3_noncore_dpll_disable,
|
|
|
|
};
|