Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37185b33 authored by Al Viro's avatar Al Viro Committed by Richard Weinberger
Browse files

um: get rid of pointless include "..." where include <...> will do

parent 382d95fd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,8 +7,8 @@
#include <linux/tty.h>
#include <linux/tty_flip.h>
#include "chan.h"
#include "os.h"
#include "irq_kern.h"
#include <os.h>
#include <irq_kern.h>

#ifdef CONFIG_NOCONFIG_CHAN
static void *not_configged_init(char *str, int device,
+2 −2
Original line number Diff line number Diff line
@@ -11,8 +11,8 @@
#include <termios.h>
#include <sys/ioctl.h>
#include "chan_user.h"
#include "os.h"
#include "um_malloc.h"
#include <os.h>
#include <um_malloc.h>

void generic_close(int fd, void *unused)
{
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
#ifndef __CHAN_USER_H__
#define __CHAN_USER_H__

#include "init.h"
#include <init.h>

struct chan_opts {
	void (*const announce)(char *dev_name, int dev);
+3 −3
Original line number Diff line number Diff line
#ifndef __COW_SYS_H__
#define __COW_SYS_H__

#include "kern_util.h"
#include "os.h"
#include "um_malloc.h"
#include <kern_util.h>
#include <os.h>
#include <um_malloc.h>

static inline void *cow_malloc(int size)
{
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
#ifndef __DAEMON_H__
#define __DAEMON_H__

#include "net_user.h"
#include <net_user.h>

#define SWITCH_VERSION 3

Loading