ALSA: usb: Remove superfluous snd_dma_continuous_data()
[linux-2.6-block.git] / init / version.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * linux/init/version.c
4 *
5 * Copyright (C) 1992 Theodore Ts'o
6 *
7 * May be freely distributed as part of Linux.
8 */
9
92045954 10#include <generated/compile.h>
9afb719e 11#include <linux/build-salt.h>
e4f02fda 12#include <linux/export.h>
1da177e4
LT
13#include <linux/uts.h>
14#include <linux/utsname.h>
273b281f 15#include <generated/utsrelease.h>
1da177e4 16#include <linux/version.h>
0bb80f24 17#include <linux/proc_ns.h>
1da177e4 18
197dcffc 19#ifndef CONFIG_KALLSYMS
1da177e4
LT
20#define version(a) Version_ ## a
21#define version_string(a) version(a)
22
277e2c69 23extern int version_string(LINUX_VERSION_CODE);
1da177e4 24int version_string(LINUX_VERSION_CODE);
197dcffc 25#endif
1da177e4 26
4865ecf1 27struct uts_namespace init_uts_ns = {
1e24edca 28 .kref = KREF_INIT(2),
4865ecf1
SH
29 .name = {
30 .sysname = UTS_SYSNAME,
31 .nodename = UTS_NODENAME,
32 .release = UTS_RELEASE,
33 .version = UTS_VERSION,
34 .machine = UTS_MACHINE,
35 .domainname = UTS_DOMAINNAME,
36 },
59607db3 37 .user_ns = &init_user_ns,
435d5f4b 38 .ns.inum = PROC_UTS_INIT_INO,
33c42940
AV
39#ifdef CONFIG_UTS_NS
40 .ns.ops = &utsns_operations,
41#endif
1da177e4 42};
4865ecf1 43EXPORT_SYMBOL_GPL(init_uts_ns);
3eb3c740 44
c71551ad
LT
45/* FIXED STRINGS! Don't touch! */
46const char linux_banner[] =
3eb3c740
RZ
47 "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
48 LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";
49
50const char linux_proc_banner[] =
51 "%s version %s"
52 " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ")"
53 " (" LINUX_COMPILER ") %s\n";
9afb719e
LA
54
55BUILD_SALT;