Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: MIT */
0002 /*
0003  * Copyright © 2019 Intel Corporation
0004  */
0005 
0006 #ifndef INTEL_CONTEXT_PARAM_H
0007 #define INTEL_CONTEXT_PARAM_H
0008 
0009 #include <linux/types.h>
0010 
0011 #include "intel_context.h"
0012 
0013 static inline void
0014 intel_context_set_watchdog_us(struct intel_context *ce, u64 timeout_us)
0015 {
0016     ce->watchdog.timeout_us = timeout_us;
0017 }
0018 
0019 #endif /* INTEL_CONTEXT_PARAM_H */