MIPS: IP22: Make indy_sc_ops variable static

The indy_sc_ops variable in arch/mips/mm/sc-ip22.c is needlessly defined
global, and this patch makes it static.

Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
---

authored by Dmitri Vorobiev and committed by Ralf Baechle f43909df 1b432840

+1 -1
+1 -1
arch/mips/mm/sc-ip22.c
··· 161 162 /* XXX Check with wje if the Indy caches can differenciate between 163 writeback + invalidate and just invalidate. */ 164 - struct bcache_ops indy_sc_ops = { 165 .bc_enable = indy_sc_enable, 166 .bc_disable = indy_sc_disable, 167 .bc_wback_inv = indy_sc_wback_invalidate,
··· 161 162 /* XXX Check with wje if the Indy caches can differenciate between 163 writeback + invalidate and just invalidate. */ 164 + static struct bcache_ops indy_sc_ops = { 165 .bc_enable = indy_sc_enable, 166 .bc_disable = indy_sc_disable, 167 .bc_wback_inv = indy_sc_wback_invalidate,