* [GIT PULL] arch/microblaze fixes for 2.6.30-rc6
@ 2009-05-08 8:02 Michal Simek
0 siblings, 0 replies; only message in thread
From: Michal Simek @ 2009-05-08 8:02 UTC (permalink / raw)
To: Linus Torvalds; +Cc: Linux Kernel list, John Williams, Ingo Molnar
Hi Linus,
please pull the following changes.
Thanks,
Michal
The following changes since commit 091438dd5668396328a3419abcbc6591159eb8d1:
Linus Torvalds (1):
Linux 2.6.30-rc4
are available in the git repository at:
git://git.monstr.eu/linux-2.6-microblaze.git fixes-for-linus
Michal Simek (1):
microblaze: Fix return value for sys_ipc
Tobias Klauser (1):
microblaze: Storage class should be before const qualifier
arch/microblaze/kernel/cpu/cpuinfo-static.c | 4 ++--
arch/microblaze/kernel/sys_microblaze.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/microblaze/kernel/cpu/cpuinfo-static.c b/arch/microblaze/kernel/cpu/cpuinfo-static.c
index cfe44ef..450ca6b 100644
--- a/arch/microblaze/kernel/cpu/cpuinfo-static.c
+++ b/arch/microblaze/kernel/cpu/cpuinfo-static.c
@@ -14,8 +14,8 @@
#include <asm/cpuinfo.h>
#include <asm/pvr.h>
-const static char family_string[] = CONFIG_XILINX_MICROBLAZE0_FAMILY;
-const static char cpu_ver_string[] = CONFIG_XILINX_MICROBLAZE0_HW_VER;
+static const char family_string[] = CONFIG_XILINX_MICROBLAZE0_FAMILY;
+static const char cpu_ver_string[] = CONFIG_XILINX_MICROBLAZE0_HW_VER;
#define err_printk(x) \
early_printk("ERROR: Microblaze " x "- different for kernel and DTS\n");
diff --git a/arch/microblaze/kernel/sys_microblaze.c b/arch/microblaze/kernel/sys_microblaze.c
index ba0568c..31905ff 100644
--- a/arch/microblaze/kernel/sys_microblaze.c
+++ b/arch/microblaze/kernel/sys_microblaze.c
@@ -131,7 +131,7 @@ sys_ipc(uint call, int first, int second, int third, void *ptr, long fifth)
ret = sys_shmctl(first, second, (struct shmid_ds *) ptr);
break;
}
- return -EINVAL;
+ return ret;
}
asmlinkage int sys_vfork(struct pt_regs *regs)
--
Michal Simek, Ing. (M.Eng)
w: www.monstr.eu p: +42-0-721842854
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-05-08 8:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-08 8:02 [GIT PULL] arch/microblaze fixes for 2.6.30-rc6 Michal Simek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox