brcm2708: update linux 4.4 patches to latest version
[openwrt/openwrt.git] / target / linux / brcm2708 / patches-4.4 / 0257-clk-bcm2835-clean-up-coding-style-issues.patch
1 From 9da8191efd09a55914c0078ee23317cd79c48b15 Mon Sep 17 00:00:00 2001
2 From: Martin Sperl <kernel@martin.sperl.org>
3 Date: Mon, 29 Feb 2016 11:39:22 +0000
4 Subject: [PATCH 257/423] clk: bcm2835: clean up coding style issues
5
6 Fix all the checkpatch complaints for clk-bcm2835.c
7
8 Signed-off-by: Martin Sperl <kernel@martin.sperl.org>
9 Signed-off-by: Eric Anholt <eric@anholt.net>
10 (cherry picked from commit 6e1e60dacee7b32aef1468ea461b02e4c7a90a45)
11 ---
12 drivers/clk/bcm/clk-bcm2835.c | 8 ++------
13 1 file changed, 2 insertions(+), 6 deletions(-)
14
15 --- a/drivers/clk/bcm/clk-bcm2835.c
16 +++ b/drivers/clk/bcm/clk-bcm2835.c
17 @@ -12,9 +12,6 @@
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 - * You should have received a copy of the GNU General Public License
22 - * along with this program; if not, write to the Free Software
23 - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26 /**
27 @@ -299,7 +296,7 @@
28 struct bcm2835_cprman {
29 struct device *dev;
30 void __iomem *regs;
31 - spinlock_t regs_lock;
32 + spinlock_t regs_lock; /* spinlock for all clocks */
33 const char *osc_name;
34
35 struct clk_onecell_data onecell;
36 @@ -1344,7 +1341,7 @@ static int bcm2835_clock_set_rate(struct
37 }
38
39 static int bcm2835_clock_determine_rate(struct clk_hw *hw,
40 - struct clk_rate_request *req)
41 + struct clk_rate_request *req)
42 {
43 struct bcm2835_clock *clock = bcm2835_clock_from_hw(hw);
44 struct clk_hw *parent, *best_parent = NULL;
45 @@ -1402,7 +1399,6 @@ static u8 bcm2835_clock_get_parent(struc
46 return (src & CM_SRC_MASK) >> CM_SRC_SHIFT;
47 }
48
49 -
50 static const struct clk_ops bcm2835_clock_clk_ops = {
51 .is_prepared = bcm2835_clock_is_on,
52 .prepare = bcm2835_clock_on,