Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
1438f40a
Commit
1438f40a
authored
Feb 18, 2003
by
Miles Bader
Committed by
Linus Torvalds
Feb 18, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Implement <asm/bug.h> for v850
parent
97f1c050
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
6 deletions
+23
-6
include/asm-v850/bug.h
include/asm-v850/bug.h
+21
-0
include/asm-v850/page.h
include/asm-v850/page.h
+2
-6
No files found.
include/asm-v850/bug.h
0 → 100644
View file @
1438f40a
/*
* include/asm-v850/bug.h -- Bug reporting
*
* Copyright (C) 2003 NEC Electronics Corporation
* Copyright (C) 2003 Miles Bader <miles@gnu.org>
*
* This file is subject to the terms and conditions of the GNU General
* Public License. See the file COPYING in the main directory of this
* archive for more details.
*
* Written by Miles Bader <miles@gnu.org>
*/
#ifndef __V850_BUG_H__
#define __V850_BUG_H__
extern
void
__bug
(
void
)
__attribute__
((
noreturn
));
#define BUG() __bug()
#define PAGE_BUG(page) __bug()
#endif
/* __V850_BUG_H__ */
include/asm-v850/page.h
View file @
1438f40a
/*
* include/asm-v850/page.h -- VM ops
*
* Copyright (C) 2001,
2002 NEC
Corporation
* Copyright (C) 2001,
2002
Miles Bader <miles@gnu.org>
* Copyright (C) 2001,
02,03 NEC Electronics
Corporation
* Copyright (C) 2001,
02,03
Miles Bader <miles@gnu.org>
*
* This file is subject to the terms and conditions of the GNU General
* Public License. See the file COPYING in the main directory of this
...
...
@@ -94,10 +94,6 @@ typedef unsigned long pgprot_t;
#ifndef __ASSEMBLY__
extern
void
__bug
(
void
)
__attribute__
((
noreturn
));
#define BUG() __bug()
#define PAGE_BUG(page) __bug()
/* Pure 2^n version of get_order */
extern
__inline__
int
get_order
(
unsigned
long
size
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment