diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2016-12-25 12:30:41 +0100 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2016-12-25 17:21:22 +0100 | 
| commit | 8b0e195314fabd58a331c4f7b6db75a1565535d7 (patch) | |
| tree | 6ff9d2d9388406b8447b09b6a4037795142172de /drivers/s390/crypto | |
| parent | 2456e855354415bfaeb7badaa14e11b3e02c8466 (diff) | |
| download | linux-8b0e195314fabd58a331c4f7b6db75a1565535d7.tar.bz2 | |
ktime: Cleanup ktime_set() usage
ktime_set(S,N) was required for the timespec storage type and is still
useful for situations where a Seconds and Nanoseconds part of a time value
needs to be converted. For anything where the Seconds argument is 0, this
is pointless and can be replaced with a simple assignment.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Diffstat (limited to 'drivers/s390/crypto')
| -rw-r--r-- | drivers/s390/crypto/ap_bus.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/s390/crypto/ap_bus.c b/drivers/s390/crypto/ap_bus.c index 6d75984a3d85..5fa699192864 100644 --- a/drivers/s390/crypto/ap_bus.c +++ b/drivers/s390/crypto/ap_bus.c @@ -333,7 +333,7 @@ void ap_wait(enum ap_wait wait)  	case AP_WAIT_TIMEOUT:  		spin_lock_bh(&ap_poll_timer_lock);  		if (!hrtimer_is_queued(&ap_poll_timer)) { -			hr_time = ktime_set(0, poll_timeout); +			hr_time = poll_timeout;  			hrtimer_forward_now(&ap_poll_timer, hr_time);  			hrtimer_restart(&ap_poll_timer);  		} @@ -860,7 +860,7 @@ static ssize_t poll_timeout_store(struct bus_type *bus, const char *buf,  	    time > 120000000000ULL)  		return -EINVAL;  	poll_timeout = time; -	hr_time = ktime_set(0, poll_timeout); +	hr_time = poll_timeout;  	spin_lock_bh(&ap_poll_timer_lock);  	hrtimer_cancel(&ap_poll_timer); |