Merge branch 'fixes-for-linus' of git://git.monstr.eu/linux-2.6-microblaze

* 'fixes-for-linus' of git://git.monstr.eu/linux-2.6-microblaze:
microblaze: Add missing FILE tag to MAINTAINERS
microblaze: remove duplicated #include's
microblaze: struct device - replace bus_id with dev_name()
microblaze: Simplify copy_thread()
microblaze: Add TIMESTAMPING constants to socket.h
microblaze: Add missing empty ftrace.h file
microblaze: Fix problem with removing zero length files

+15 -14
+1
MAINTAINERS
··· 3680 W: http://www.monstr.eu/fdt/ 3681 T: git git://git.monstr.eu/linux-2.6-microblaze.git 3682 S: Supported 3683 3684 MICROTEK X6 SCANNER 3685 P: Oliver Neukum
··· 3680 W: http://www.monstr.eu/fdt/ 3681 T: git git://git.monstr.eu/linux-2.6-microblaze.git 3682 S: Supported 3683 + F: arch/microblaze/ 3684 3685 MICROTEK X6 SCANNER 3686 P: Oliver Neukum
+1
arch/microblaze/include/asm/auxvec.h
···
··· 1 +
+1
arch/microblaze/include/asm/cputable.h
···
··· 1 +
+1
arch/microblaze/include/asm/ftrace.h
···
··· 1 +
+1
arch/microblaze/include/asm/hw_irq.h
···
··· 1 +
-1
arch/microblaze/include/asm/io.h
··· 12 #include <asm/byteorder.h> 13 #include <asm/page.h> 14 #include <linux/types.h> 15 - #include <asm/page.h> 16 17 #define IO_SPACE_LIMIT (0xFFFFFFFF) 18
··· 12 #include <asm/byteorder.h> 13 #include <asm/page.h> 14 #include <linux/types.h> 15 16 #define IO_SPACE_LIMIT (0xFFFFFFFF) 17
+3
arch/microblaze/include/asm/socket.h
··· 63 64 #define SO_MARK 36 65 66 #endif /* _ASM_MICROBLAZE_SOCKET_H */
··· 63 64 #define SO_MARK 36 65 66 + #define SO_TIMESTAMPING 37 67 + #define SCM_TIMESTAMPING SO_TIMESTAMPING 68 + 69 #endif /* _ASM_MICROBLAZE_SOCKET_H */
+1
arch/microblaze/include/asm/user.h
···
··· 1 +
+1
arch/microblaze/include/asm/vga.h
···
··· 1 +
+4 -6
arch/microblaze/kernel/of_device.c
··· 13 { 14 static atomic_t bus_no_reg_magic; 15 struct device_node *node = dev->node; 16 - char *name = dev->dev.bus_id; 17 const u32 *reg; 18 u64 addr; 19 int magic; ··· 24 if (reg) { 25 addr = of_translate_address(node, reg); 26 if (addr != OF_BAD_ADDR) { 27 - snprintf(name, BUS_ID_SIZE, 28 - "%llx.%s", (unsigned long long)addr, 29 - node->name); 30 return; 31 } 32 } ··· 35 * counter (and pray...) 36 */ 37 magic = atomic_add_return(1, &bus_no_reg_magic); 38 - snprintf(name, BUS_ID_SIZE, "%s.%d", node->name, magic - 1); 39 } 40 EXPORT_SYMBOL(of_device_make_bus_id); 41 ··· 56 dev->dev.archdata.of_node = np; 57 58 if (bus_id) 59 - strlcpy(dev->dev.bus_id, bus_id, BUS_ID_SIZE); 60 else 61 of_device_make_bus_id(dev); 62
··· 13 { 14 static atomic_t bus_no_reg_magic; 15 struct device_node *node = dev->node; 16 const u32 *reg; 17 u64 addr; 18 int magic; ··· 25 if (reg) { 26 addr = of_translate_address(node, reg); 27 if (addr != OF_BAD_ADDR) { 28 + dev_set_name(&dev->dev, "%llx.%s", 29 + (unsigned long long)addr, node->name); 30 return; 31 } 32 } ··· 37 * counter (and pray...) 38 */ 39 magic = atomic_add_return(1, &bus_no_reg_magic); 40 + dev_set_name(&dev->dev, "%s.%d", node->name, magic - 1); 41 } 42 EXPORT_SYMBOL(of_device_make_bus_id); 43 ··· 58 dev->dev.archdata.of_node = np; 59 60 if (bus_id) 61 + dev_set_name(&dev->dev, bus_id); 62 else 63 of_device_make_bus_id(dev); 64
+1 -2
arch/microblaze/kernel/process.c
··· 115 { 116 } 117 118 - /* FIXME - here will be a proposed change -> remove nr parameter */ 119 - int copy_thread(int nr, unsigned long clone_flags, unsigned long usp, 120 unsigned long unused, 121 struct task_struct *p, struct pt_regs *regs) 122 {
··· 115 { 116 } 117 118 + int copy_thread(unsigned long clone_flags, unsigned long usp, 119 unsigned long unused, 120 struct task_struct *p, struct pt_regs *regs) 121 {
-1
arch/microblaze/kernel/prom.c
··· 39 #include <asm/system.h> 40 #include <asm/mmu.h> 41 #include <asm/pgtable.h> 42 - #include <linux/pci.h> 43 #include <asm/sections.h> 44 #include <asm/pci-bridge.h> 45
··· 39 #include <asm/system.h> 40 #include <asm/mmu.h> 41 #include <asm/pgtable.h> 42 #include <asm/sections.h> 43 #include <asm/pci-bridge.h> 44
-1
arch/microblaze/kernel/ptrace.c
··· 32 #include <linux/signal.h> 33 34 #include <linux/errno.h> 35 - #include <linux/ptrace.h> 36 #include <asm/processor.h> 37 #include <linux/uaccess.h> 38 #include <asm/asm-offsets.h>
··· 32 #include <linux/signal.h> 33 34 #include <linux/errno.h> 35 #include <asm/processor.h> 36 #include <linux/uaccess.h> 37 #include <asm/asm-offsets.h>
-1
arch/microblaze/kernel/signal.c
··· 37 #include <linux/uaccess.h> 38 #include <asm/pgtable.h> 39 #include <asm/pgalloc.h> 40 - #include <linux/signal.h> 41 #include <linux/syscalls.h> 42 #include <asm/cacheflush.h> 43 #include <asm/syscalls.h>
··· 37 #include <linux/uaccess.h> 38 #include <asm/pgtable.h> 39 #include <asm/pgalloc.h> 40 #include <linux/syscalls.h> 41 #include <asm/cacheflush.h> 42 #include <asm/syscalls.h>
-2
arch/microblaze/kernel/sys_microblaze.c
··· 29 #include <linux/module.h> 30 #include <linux/err.h> 31 #include <linux/fs.h> 32 - #include <linux/ipc.h> 33 #include <linux/semaphore.h> 34 - #include <linux/syscalls.h> 35 #include <linux/uaccess.h> 36 #include <linux/unistd.h> 37
··· 29 #include <linux/module.h> 30 #include <linux/err.h> 31 #include <linux/fs.h> 32 #include <linux/semaphore.h> 33 #include <linux/uaccess.h> 34 #include <linux/unistd.h> 35