Commit 5b0dfc76 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

comments

parent 18813c2c
...@@ -652,6 +652,8 @@ int gpio_10389_ctrl(struct device *dev, int value){ ...@@ -652,6 +652,8 @@ int gpio_10389_ctrl(struct device *dev, int value){
int i, res; int i, res;
int val = 0; int val = 0;
//lock here //lock here
//doesn't work
//mutex_lock(&dev->mutex);
for(i=16;i<20;i++){ for(i=16;i<20;i++){
if ((value>>(i-8))&0x1){ if ((value>>(i-8))&0x1){
val = (value>>(i-16))&0x1; val = (value>>(i-16))&0x1;
...@@ -662,6 +664,8 @@ int gpio_10389_ctrl(struct device *dev, int value){ ...@@ -662,6 +664,8 @@ int gpio_10389_ctrl(struct device *dev, int value){
} }
} }
//unlock somewhere here //unlock somewhere here
//doesn't work
//mutex_unlock(&dev->mutex);
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment