The patch titled
Sky Cpu: use C99 style for struct init
has been removed from the -mm tree. Its filename was
sky-cpu-use-c99-style-for-struct-init.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: Sky Cpu: use C99 style for struct init
From: Cyrill Gorcunov <[EMAIL PROTECTED]>
This patch change structure item init format to C99.
Signed-off-by: Cyrill Gorcunov <[EMAIL PROTECTED]>
Cc: Benjamin Herrenschmidt <[EMAIL PROTECTED]>
Cc: Paul Mackerras <[EMAIL PROTECTED]>
Cc: Kumar Gala <[EMAIL PROTECTED]>
Cc: Brian Waite <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/misc/hdpuftrs/hdpu_cpustate.c | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff -puN
drivers/misc/hdpuftrs/hdpu_cpustate.c~sky-cpu-use-c99-style-for-struct-init
drivers/misc/hdpuftrs/hdpu_cpustate.c
---
a/drivers/misc/hdpuftrs/hdpu_cpustate.c~sky-cpu-use-c99-style-for-struct-init
+++ a/drivers/misc/hdpuftrs/hdpu_cpustate.c
@@ -170,21 +170,21 @@ static struct platform_driver hdpu_cpust
* 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,
+ .fasync = NULL,
+ .poll = NULL,
+ .ioctl = NULL,
+ .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)
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-cifs.patch
git-powerpc.patch
udf-code-style-fixup-v3.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html