Skip to content

Commit

Permalink
[PATCH] ppc64 g5: merge tree build fix
Browse files Browse the repository at this point in the history
We removed __pmacdata in the merge.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Stephen Rothwell authored and Paul Mackerras committed Sep 27, 2005
1 parent e607d98 commit 6b67f62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/macintosh/smu.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
};

Expand Down

0 comments on commit 6b67f62

Please sign in to comment.