Fix makefile: no redundant sudo; Fix mbpfan.c: no more sudden silence when starting.

This commit is contained in:
Yi Yang @ Minthe 2014-07-06 23:59:06 -07:00
parent 643c7a3746
commit bb264080a5
2 changed files with 2 additions and 4 deletions

View file

@ -56,7 +56,7 @@ clean:
tests:
make install
sudo /usr/sbin/mbpfan -f -v -t
/usr/sbin/mbpfan -f -v -t
uninstall:
rm /usr/sbin/mbpfan
@ -78,4 +78,4 @@ install:
@echo " sudo make tests"
@echo ""
rebuild: clean all
#rebuild is not entirely correct
#rebuild is not entirely correct

View file

@ -504,8 +504,6 @@ void mbpfan()
}
}
sleep(polling_interval);
step_up = (float)( max_fan_speed - min_fan_speed ) /
(float)( ( max_temp - high_temp ) * ( max_temp - high_temp + 1 ) / 2 );