projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e607d98
)
[PATCH] ppc64 g5: merge tree build fix
author
Stephen Rothwell
<
[email protected]
>
Tue, 27 Sep 2005 04:09:39 +0000
(14:09 +1000)
committer
Paul Mackerras
<
[email protected]
>
Tue, 27 Sep 2005 06:36:23 +0000
(16:36 +1000)
We removed __pmacdata in the merge.
Signed-off-by: Stephen Rothwell <
[email protected]
>
Signed-off-by: Paul Mackerras <
[email protected]
>
drivers/macintosh/smu.c
patch
|
blob
|
history
diff --git
a/drivers/macintosh/smu.c
b/drivers/macintosh/smu.c
index a85ac18dd21d13971738fbb45a93415384ed194f..5f283529620bed654532fe053d37e3cf7ce6f533 100644
(file)
--- a/
drivers/macintosh/smu.c
+++ b/
drivers/macintosh/smu.c
@@
-1092,7
+1092,7
@@
static int smu_release(struct inode *inode, struct file *file)
}
-static struct file_operations smu_device_fops
__pmacdata
= {
+static struct file_operations smu_device_fops = {
.llseek = no_llseek,
.read = smu_read,
.write = smu_write,
@@
-1101,7
+1101,7
@@
static struct file_operations smu_device_fops __pmacdata = {
.release = smu_release,
};
-static struct miscdevice pmu_device
__pmacdata
= {
+static struct miscdevice pmu_device = {
MISC_DYNAMIC_MINOR, "smu", &smu_device_fops
};