From: Adrian Bunk Date: Tue, 6 Sep 2005 01:04:28 +0000 (-0700) Subject: [ATM]: net/atm/ioctl.c should #include "common.h" X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=295098e9f4822aecdddd4cab05705f1ee63bc3f4;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [ATM]: net/atm/ioctl.c should #include "common.h" Every file should #include the header files containing the prototypes of it's global functions. common.h contains the prototype for vcc_ioctl(). Signed-off-by: Adrian Bunk Signed-off-by: David S. Miller --- diff --git a/net/atm/ioctl.c b/net/atm/ioctl.c index 4dbb5af34a5e..d89056ec44d4 100644 --- a/net/atm/ioctl.c +++ b/net/atm/ioctl.c @@ -21,6 +21,7 @@ #include "resources.h" #include "signaling.h" /* for WAITING and sigd_attach */ +#include "common.h" static DECLARE_MUTEX(ioctl_mutex);