Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/hexagon/include/asm/setup.h
26481 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 and
7
* only version 2 as published by the Free Software Foundation.
8
*/
9
10
#ifndef _ASM_HEXAGON_SETUP_H
11
#define _ASM_HEXAGON_SETUP_H
12
13
#include <linux/init.h>
14
#include <uapi/asm/setup.h>
15
16
extern char external_cmdline_buffer;
17
18
void __init setup_arch_memory(void);
19
20
#endif
21
22