diff --git a/[refs] b/[refs] index 75b3a0748ce9..859bce9e78a0 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e607d98369dbd8e7b33b19664d1729a8a81fe7cd +refs/heads/master: 6b67f62cf655c80147435544a2f8f6f57e07ec87 diff --git a/trunk/drivers/macintosh/smu.c b/trunk/drivers/macintosh/smu.c index a85ac18dd21d..5f283529620b 100644 --- a/trunk/drivers/macintosh/smu.c +++ b/trunk/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 };