spi-topcliff-pch: Fix issue for transmitting over 4KByte
[zen-stable.git] / arch / arm / mach-zynq / include / mach / clkdev.h
blobc6e73d81a459f83dde65c5dd4ec10befa280a055
1 /*
2 * arch/arm/mach-zynq/include/mach/clkdev.h
4 * Copyright (C) 2011 Xilinx, Inc.
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
17 #ifndef __MACH_CLKDEV_H__
18 #define __MACH_CLKDEV_H__
20 #include <plat/clock.h>
22 struct clk {
23 unsigned long rate;
24 const struct clk_ops *ops;
25 const struct icst_params *params;
26 void __iomem *vcoreg;
29 #define __clk_get(clk) ({ 1; })
30 #define __clk_put(clk) do { } while (0)
32 #endif