Lines Matching defs:count
26 * @count: not used?
28 int hvc_get_chars(uint32_t vtermno, char *buf, int count)
52 * firmware. Must be at least 16 bytes, even if count is less than 16.
53 * @count: Send this number of characters.
55 int hvc_put_chars(uint32_t vtermno, const char *buf, int count)
61 /* hcall will ret H_PARAMETER if 'count' exceeds firmware max.*/
62 if (count > MAX_VIO_PUT_CHARS)
63 count = MAX_VIO_PUT_CHARS;
65 ret = plpar_hcall_norets(H_PUT_TERM_CHAR, vtermno, count,
69 return count;