Lines Matching defs:out
122 dev_err(&chip->dev, "Operation Timed out\n");
327 goto out;
333 goto out;
339 out:
437 * @out: destination buffer for the random bytes
438 * @max: the max number of bytes to write to @out
442 int tpm_get_random(struct tpm_chip *chip, u8 *out, size_t max)
446 if (!out || max > TPM_MAX_RNG_DATA)
454 rc = tpm2_get_random(chip, out, max);
456 rc = tpm1_get_random(chip, out, max);