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
9b9644c6
Commit
9b9644c6
authored
Aug 27, 2008
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sparc: Kill sbus_devaddr() and sbus_dev_slot().
Unused. Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
615deeb2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
36 deletions
+0
-36
arch/sparc/include/asm/sbus_32.h
arch/sparc/include/asm/sbus_32.h
+0
-18
arch/sparc/include/asm/sbus_64.h
arch/sparc/include/asm/sbus_64.h
+0
-18
No files found.
arch/sparc/include/asm/sbus_32.h
View file @
9b9644c6
...
@@ -21,24 +21,6 @@
...
@@ -21,24 +21,6 @@
* you can get a SBus 'slot' number and an offset within that slot.
* you can get a SBus 'slot' number and an offset within that slot.
*/
*/
/* The base address at which to calculate device OBIO addresses. */
#define SUN_SBUS_BVADDR 0xf8000000
#define SBUS_OFF_MASK 0x01ffffff
/* These routines are used to calculate device address from slot
* numbers + offsets, and vice versa.
*/
static
inline
unsigned
long
sbus_devaddr
(
int
slotnum
,
unsigned
long
offset
)
{
return
(
unsigned
long
)
(
SUN_SBUS_BVADDR
+
((
slotnum
)
<<
25
)
+
(
offset
));
}
static
inline
int
sbus_dev_slot
(
unsigned
long
dev_addr
)
{
return
(
int
)
(((
dev_addr
)
-
SUN_SBUS_BVADDR
)
>>
25
);
}
struct
sbus_bus
;
struct
sbus_bus
;
/* Linux SBUS device tables */
/* Linux SBUS device tables */
...
...
arch/sparc/include/asm/sbus_64.h
View file @
9b9644c6
...
@@ -21,24 +21,6 @@
...
@@ -21,24 +21,6 @@
* you can get a SBus 'slot' number and an offset within that slot.
* you can get a SBus 'slot' number and an offset within that slot.
*/
*/
/* The base address at which to calculate device OBIO addresses. */
#define SUN_SBUS_BVADDR 0x00000000
#define SBUS_OFF_MASK 0x0fffffff
/* These routines are used to calculate device address from slot
* numbers + offsets, and vice versa.
*/
static
inline
unsigned
long
sbus_devaddr
(
int
slotnum
,
unsigned
long
offset
)
{
return
(
unsigned
long
)
(
SUN_SBUS_BVADDR
+
((
slotnum
)
<<
28
)
+
(
offset
));
}
static
inline
int
sbus_dev_slot
(
unsigned
long
dev_addr
)
{
return
(
int
)
(((
dev_addr
)
-
SUN_SBUS_BVADDR
)
>>
28
);
}
struct
sbus_bus
;
struct
sbus_bus
;
/* Linux SBUS device tables */
/* Linux SBUS device tables */
...
...
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