···193193uint32_t get_gptimer_status(unsigned int group);194194void set_gptimer_status(unsigned int group, uint32_t value);195195196196+static inline void enable_gptimer(unsigned int timer_id)197197+{198198+ enable_gptimers(1 << timer_id);199199+}200200+201201+static inline void disable_gptimer(unsigned int timer_id)202202+{203203+ disable_gptimers(1 << timer_id);204204+}205205+196206/*197207 * All Blackfin system MMRs are padded to 32bits even if the register198208 * itself is only 16bits. So use a helper macro to streamline this.