提交 8b70da1a 编写于 作者: C Cyrill Gorcunov 提交者: Paul Mackerras

[POWERPC] Sky Cpu: use C99 style for struct init

This changes structure item init format to C99, and removes useless
structure items init.
Signed-off-by: NCyrill Gorcunov <gorcunov@gmail.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Kumar Gala <galak@gate.crashing.org>
Cc: Brian Waite <waite@skycomputers.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NPaul Mackerras <paulus@samba.org>
上级 5f725fe9
......@@ -170,21 +170,18 @@ static struct platform_driver hdpu_cpustate_driver = {
* The various file operations we support.
*/
static const struct file_operations cpustate_fops = {
owner: THIS_MODULE,
open: cpustate_open,
release: cpustate_release,
read: cpustate_read,
write: cpustate_write,
fasync: NULL,
poll: NULL,
ioctl: NULL,
llseek: no_llseek,
.owner = THIS_MODULE,
.open = cpustate_open,
.release = cpustate_release,
.read = cpustate_read,
.write = cpustate_write,
.llseek = no_llseek,
};
static struct miscdevice cpustate_dev = {
MISC_DYNAMIC_MINOR,
"sky_cpustate",
&cpustate_fops,
.minor = MISC_DYNAMIC_MINOR,
.name = "sky_cpustate",
.fops = &cpustate_fops,
};
static int hdpu_cpustate_probe(struct platform_device *pdev)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册