#ifndef IOOPS_H #define IOOPS_H #include extern int open_or_die(const char *file, int flags); extern int open_or_die_m(const char *file, int flags, mode_t mode); extern int dup_or_die(int oldfd); extern void dup2_or_die(int oldfd, int newfd); extern void create_or_die(const char *file, mode_t mode); extern int tun_open_or_die(const char *name, int type); extern void pipe_or_die(int pipefd[2], int flags); extern ssize_t read_or_die(int fd, void *buf, size_t count); extern ssize_t write_or_die(int fd, const void *buf, size_t count); extern int read_blob_or_die(const char *file, void *blob, size_t count); extern int write_blob_or_die(const char *file, const void *blob, size_t count); #endif /* IOOPS_H */ /> index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorFlorian Vaussard <florian.vaussard@gmail.com>2016-02-05 16:32:14 +0100
committerMark Brown <broonie@kernel.org>2016-03-05 14:02:13 +0900
commit4f2bf0ace0f96cc693002e1bbde967fa2356bc43 (patch)
treec3b1a5be07532b897a27562171fdb2ebe4e5e907 /sound
parentc9146fae4e88fa9864c4a7087289523b96cdbf2d (diff)
ASoC: ads117x: Add device tree compatible string
This patch adds the necessary device tree compatible string to allow DT probing. Signed-off-by: Florian Vaussard <florian.vaussard@heig-vd.ch> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')