···11-#ifndef __ASM_SH_MMAN_H22-#define __ASM_SH_MMAN_H33-44-#include <asm-generic/mman-common.h>55-66-#define MAP_GROWSDOWN 0x0100 /* stack-like segment */77-#define MAP_DENYWRITE 0x0800 /* ETXTBSY */88-#define MAP_EXECUTABLE 0x1000 /* mark it as an executable */99-#define MAP_LOCKED 0x2000 /* pages are locked */1010-#define MAP_NORESERVE 0x4000 /* don't check for reservations */1111-#define MAP_POPULATE 0x8000 /* populate (prefault) page tables */1212-#define MAP_NONBLOCK 0x10000 /* do not block on IO */1313-1414-#define MCL_CURRENT 1 /* lock all current mappings */1515-#define MCL_FUTURE 2 /* lock all future mappings */1616-1717-#endif /* __ASM_SH_MMAN_H */11+#include <asm-generic/mman.h>
+1-22
arch/sh/include/asm/param.h
···11-#ifndef __ASM_SH_PARAM_H22-#define __ASM_SH_PARAM_H33-44-#ifdef __KERNEL__55-# define HZ CONFIG_HZ66-# define USER_HZ 100 /* User interfaces are in "ticks" */77-# define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */88-#endif99-1010-#ifndef HZ1111-#define HZ 1001212-#endif1313-1414-#define EXEC_PAGESIZE 40961515-1616-#ifndef NOGROUP1717-#define NOGROUP (-1)1818-#endif1919-2020-#define MAXHOSTNAMELEN 64 /* max length of hostname */2121-2222-#endif /* __ASM_SH_PARAM_H */11+#include <asm-generic/param.h>
+1-16
arch/sh/include/asm/parport.h
···11-/*22- * Copyright (C) 1999, 2000 Tim Waugh <tim@cyberelk.demon.co.uk>33- *44- * This file should only be included by drivers/parport/parport_pc.c.55- */66-#ifndef __ASM_SH_PARPORT_H77-#define __ASM_SH_PARPORT_H88-99-static int __devinit parport_pc_find_isa_ports(int autoirq, int autodma);1010-1111-static int __devinit parport_pc_find_nonpci_ports(int autoirq, int autodma)1212-{1313- return parport_pc_find_isa_ports(autoirq, autodma);1414-}1515-1616-#endif /* __ASM_SH_PARPORT_H */11+#include <asm-generic/parport.h>
+1-19
arch/sh/include/asm/serial.h
···11-/*22- * include/asm-sh/serial.h33- *44- * Configuration details for 8250, 16450, 16550, etc. serial ports55- */66-77-#ifndef _ASM_SERIAL_H88-#define _ASM_SERIAL_H99-1010-/*1111- * This assumes you have a 1.8432 MHz clock for your UART.1212- *1313- * It'd be nice if someone built a serial card with a 24.576 MHz1414- * clock, since the 16550A is capable of handling a top speed of 1.51515- * megabits/second; but this requires the faster clock.1616- */1717-#define BASE_BAUD ( 1843200 / 16 )1818-1919-#endif /* _ASM_SERIAL_H */11+#include <asm-generic/serial.h>