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
nexedi
linux
Commits
28c8df48
Commit
28c8df48
authored
Oct 01, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bitmap_member() => DECLARE_BITMAP()
parent
983f7121
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
drivers/zorro/zorro.c
drivers/zorro/zorro.c
+1
-1
include/linux/types.h
include/linux/types.h
+1
-1
include/linux/zorro.h
include/linux/zorro.h
+1
-1
No files found.
drivers/zorro/zorro.c
View file @
28c8df48
...
...
@@ -80,7 +80,7 @@ struct zorro_dev *zorro_find_device(zorro_id id, struct zorro_dev *from)
* FIXME: use the normal resource management
*/
bitmap_member
(
zorro_unused_z2ram
,
128
);
DECLARE_BITMAP
(
zorro_unused_z2ram
,
128
);
static
void
__init
mark_region
(
unsigned
long
start
,
unsigned
long
end
,
...
...
include/linux/types.h
View file @
28c8df48
...
...
@@ -4,7 +4,7 @@
#ifdef __KERNEL__
#include <linux/config.h>
#define
bitmap_member
(name,bits) \
#define
DECLARE_BITMAP
(name,bits) \
unsigned long name[((bits)+BITS_PER_LONG-1)/BITS_PER_LONG]
#endif
...
...
include/linux/zorro.h
View file @
28c8df48
...
...
@@ -199,7 +199,7 @@ extern struct zorro_dev *zorro_find_device(zorro_id id,
* the corresponding bits.
*/
extern
bitmap_member
(
zorro_unused_z2ram
,
128
);
extern
DECLARE_BITMAP
(
zorro_unused_z2ram
,
128
);
#define Z2RAM_START (0x00200000)
#define Z2RAM_END (0x00a00000)
...
...
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