Mainly remove, or start using some unused variables - clang is stricter than gcc with unused variables and fail to compile.
The lack of using the ret var in function xocl_drvinst_set_offline is a bug, as this function would always return 0 even when failing and should have returned -EINODEV.
ret
var in functionxocl_drvinst_set_offline
is a bug, as this function would always return 0 even when failing and should have returned-EINODEV
.Depends on PR #52