summaryrefslogtreecommitdiff
path: root/str.h
blob: 7b8916cb11ab7ea598fe8771f542f203d904bf80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef STR_H
#define STR_H

#include "built_in.h"

extern size_t strlcpy(char *dest, const char *src, size_t size);
extern int slprintf(char *dst, size_t size, const char *fmt, ...)  __check_format_printf(3, 4);
extern int slprintf_nocheck(char *dst, size_t size, const char *fmt, ...);
extern char *strtrim_right(char *p, char c);
extern noinline void *xmemset(void *s, int c, size_t n);

#endif /* STR_H */
ass='label'>space:mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2016-04-13 15:29:44 +0530
committerMark Brown <broonie@kernel.org>2016-04-13 17:19:26 +0100
commit19dd159ce8086293b70bd8e1aeebe06aff8d7df8 (patch)
treecbd2fe5ef6d58626f22b9781795a568d039082a6 /Makefile
parentf55532a0c0b8bb6148f4e07853b876ef73bc69ca (diff)
regulator: max8973: add DT binding details for junction warn temp
The driver MAX8973 supports the driver for Maxim MAX77621. MAX77621 supports the junction temp warning at 120 degC and 140 degC which is configurable. It generates alert signal when junction temperature crosses these threshold. Add DT properties and its binding details to make this configuration from DT. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Makefile')