File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
arch/blackfin/include/asm Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -244,16 +244,26 @@ static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
244
244
return - EINVAL ;
245
245
}
246
246
247
- static inline int gpio_get_value (unsigned gpio )
247
+ static inline int __gpio_get_value (unsigned gpio )
248
248
{
249
249
return bfin_gpio_get_value (gpio );
250
250
}
251
251
252
- static inline void gpio_set_value (unsigned gpio , int value )
252
+ static inline void __gpio_set_value (unsigned gpio , int value )
253
253
{
254
254
return bfin_gpio_set_value (gpio , value );
255
255
}
256
256
257
+ static inline int gpio_get_value (unsigned gpio )
258
+ {
259
+ return __gpio_get_value (gpio );
260
+ }
261
+
262
+ static inline void gpio_set_value (unsigned gpio , int value )
263
+ {
264
+ return __gpio_set_value (gpio , value );
265
+ }
266
+
257
267
static inline int gpio_to_irq (unsigned gpio )
258
268
{
259
269
if (likely (gpio < MAX_BLACKFIN_GPIOS ))
You can’t perform that action at this time.
0 commit comments