summaryrefslogtreecommitdiff
path: root/dev.h
blob: cebcee4877d5556f90ff4b541062e0d43fa7852e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef DEV_H
#define DEV_H

#include <sys/socket.h>
#include "built_in.h"

extern int device_mtu(const char *ifname);
extern int device_address(const char *ifname, int af, struct sockaddr_storage *ss);
extern int device_ifindex(const char *ifname);
extern short device_get_flags(const char *ifname);
extern void device_set_flags(const char *ifname, const short flags);
extern int device_up_and_running(char *ifname);
extern u32 device_bitrate(const char *ifname);

#endif /* DEV_H */
285aa3aae02bf005e5635 (patch) tree4a093776231b6fdc6919537a24827df242e8d48d parent6dca83fdee7c45a960018141827c9d4b5b50d0a2 (diff)
ASoC: fsl: fix build failure
m32r allmodconfig build is failing with the error: ERROR: "bad_dma_ops" [sound/soc/fsl/snd-soc-fsl-asrc.ko] undefined! The code is using DMA but the related dependency is not mentioned in the Kconfig. Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat