board-apsh4ad0a.c (020abf03cd659388f94cb328e1e1df0656e0d7ff) | board-apsh4ad0a.c (7912825d8b755e6a5b9839eab910f451b0271aba) |
---|---|
1/* 2 * ALPHAPROJECT AP-SH4AD-0A Support. 3 * 4 * Copyright (C) 2010 ALPHAPROJECT Co.,Ltd. 5 * Copyright (C) 2010 Matt Fleming 6 * Copyright (C) 2010 Paul Mundt 7 * 8 * This file is subject to the terms and conditions of the GNU General Public --- 80 unchanged lines hidden (view full) --- 89} 90 91static int apsh4ad0a_clk_init(void) 92{ 93 struct clk *clk; 94 int ret; 95 96 clk = clk_get(NULL, "extal"); | 1/* 2 * ALPHAPROJECT AP-SH4AD-0A Support. 3 * 4 * Copyright (C) 2010 ALPHAPROJECT Co.,Ltd. 5 * Copyright (C) 2010 Matt Fleming 6 * Copyright (C) 2010 Paul Mundt 7 * 8 * This file is subject to the terms and conditions of the GNU General Public --- 80 unchanged lines hidden (view full) --- 89} 90 91static int apsh4ad0a_clk_init(void) 92{ 93 struct clk *clk; 94 int ret; 95 96 clk = clk_get(NULL, "extal"); |
97 if (!clk || IS_ERR(clk)) | 97 if (IS_ERR(clk)) |
98 return PTR_ERR(clk); 99 ret = clk_set_rate(clk, 33333000); 100 clk_put(clk); 101 102 return ret; 103} 104 105/* Initialize the board */ --- 20 unchanged lines hidden --- | 98 return PTR_ERR(clk); 99 ret = clk_set_rate(clk, 33333000); 100 clk_put(clk); 101 102 return ret; 103} 104 105/* Initialize the board */ --- 20 unchanged lines hidden --- |