Release 4.11 arch/alpha/lib/srm_puts.c
/*
* arch/alpha/lib/srm_puts.c
*/
#include <linux/string.h>
#include <asm/console.h>
long
srm_puts(const char *str, long len)
{
long remaining, written;
if (!callback_init_done)
return len;
for (remaining = len; remaining > 0; remaining -= written)
{
written = callback_puts(0, str, remaining);
written &= 0xffffffff;
str += written;
}
return len;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 64 | 100.00% | 2 | 100.00% |
Total | 64 | 100.00% | 2 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 71 | 100.00% | 2 | 100.00% |
Total | 71 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.