ruby: handle singleton method including ?!= in its name(sf.bug:364)
[geany-mirror.git] / tests / ctags / bug1764143.h
blob6074d1621ef2f3fa5cc137c90f7b55de7f52a86d
1 static inline void omap1_arch_reset(char mode)
3 /*
4 * Workaround for 5912/1611b bug mentioned in sprz209d.pdf p. 28
5 * "Global Software Reset Affects Traffic Controller Frequency".
6 */
7 if (cpu_is_omap5912()) {
8 omap_writew(omap_readw(DPLL_CTL) & ~(1 << 4),
9 DPLL_CTL);
10 omap_writew(0x8, ARM_RSTCT1);
13 if (machine_is_voiceblue())
14 voiceblue_reset();
15 else
16 omap_writew(1, ARM_RSTCT1);
19 static inline void arch_reset(char mode)
21 if (!cpu_is_omap24xx())
22 omap1_arch_reset(mode);
23 else
24 omap_prcm_arch_reset(mode);
27 #endif