#include #include "timer.h" void set_itimer_interval_value(struct itimerval *itimer, unsigned long sec, unsigned long usec) { itimer->it_interval.tv_sec = sec; itimer->it_interval.tv_usec = usec; itimer->it_value.tv_sec = sec; itimer->it_value.tv_usec = usec; } //git.distanz.ch/cgit.cgi/linux/net-next.git/atom/?h=nds-private-remove' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2016-10-31 11:02:31 -0400
committerAlex Deucher <alexander.deucher@amd.com>2016-10-31 11:49:58 -0400
commit84b1528e8cef55274f0df20e93513b3060ce495a (patch)
treeb4f49c27922c0c066f263bdc922c2f7df9cfaa1f
parent066f1f0b4719eb4573ef09bfc63c2bbb6f7676ca (diff)
drm/amdgpu: disable runtime pm in certain cases
If the platform does not support hybrid graphics or ATPX dGPU power control. Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org