summaryrefslogtreecommitdiffstats
path: root/drivers/macintosh/smu.c
diff options
context:
space:
mode:
authorStephen Rothwell2005-09-27 06:09:39 +0200
committerPaul Mackerras2005-09-27 08:36:23 +0200
commit6b67f62cf655c80147435544a2f8f6f57e07ec87 (patch)
treefdbc706746344d4370ce3ae544c0a71ac833b147 /drivers/macintosh/smu.c
parentppc64: Fix typo in iommu cleanups that broke pmac build. (diff)
downloadkernel-qcow2-linux-6b67f62cf655c80147435544a2f8f6f57e07ec87.tar.gz
kernel-qcow2-linux-6b67f62cf655c80147435544a2f8f6f57e07ec87.tar.xz
kernel-qcow2-linux-6b67f62cf655c80147435544a2f8f6f57e07ec87.zip
[PATCH] ppc64 g5: merge tree build fix
We removed __pmacdata in the merge. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'drivers/macintosh/smu.c')
-rw-r--r--drivers/macintosh/smu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/macintosh/smu.c b/drivers/macintosh/smu.c
index a85ac18dd21d..5f283529620b 100644
--- 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
};