31 Mar, 2011
1 commit
-
Fixes generated by 'codespell' and manually reviewed.
Signed-off-by: Lucas De Marchi
19 Feb, 2011
1 commit
-
Replace a BSD-style license in Code Aurora Forum authored files with
an explicit GPLv2.Signed-off-by: David Brown
Signed-off-by: Greg Kroah-Hartman
03 Feb, 2011
1 commit
-
This was done to resolve conflicts in the following files due
to patches in Linus's tree and in the staging-next tree:
drivers/staging/brcm80211/brcmsmac/wl_mac80211.c
drivers/staging/ste_rmi4/synaptics_i2c_rmi4.cSigned-off-by: Greg Kroah-Hartman
01 Feb, 2011
1 commit
-
This code elsewhere returns a negative constant to an indicate an error,
while IS_ERR returns the result of a >= operation.The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)//
@@
expression x;
@@if (...) { ...
- return IS_ERR(x);
+ return PTR_ERR(x);
}
//Signed-off-by: Julia Lawall
Acked-by: David Brown
Signed-off-by: Greg Kroah-Hartman
26 Jan, 2011
1 commit
-
The -rt patches change the console_semaphore to console_mutex. As a
result, a quite large chunk of the patches changes all
acquire/release_console_sem() to acquire/release_console_mutex()This commit makes things use more neutral function names which dont make
implications about the underlying lock.The only real change is the return value of console_trylock which is
inverted from try_acquire_console_sem()This patch also paves the way to switching console_sem from a semaphore to
a mutex.[akpm@linux-foundation.org: coding-style fixes]
[akpm@linux-foundation.org: make console_trylock return 1 on success, per Geert]
Signed-off-by: Torben Hohn
Cc: Thomas Gleixner
Cc: Greg KH
Cc: Ingo Molnar
Cc: Geert Uytterhoeven
Signed-off-by: Andrew Morton
Signed-off-by: Linus Torvalds
14 Jan, 2011
1 commit
-
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (43 commits)
Documentation/trace/events.txt: Remove obsolete sched_signal_send.
writeback: fix global_dirty_limits comment runtime -> real-time
ppc: fix comment typo singal -> signal
drivers: fix comment typo diable -> disable.
m68k: fix comment typo diable -> disable.
wireless: comment typo fix diable -> disable.
media: comment typo fix diable -> disable.
remove doc for obsolete dynamic-printk kernel-parameter
remove extraneous 'is' from Documentation/iostats.txt
Fix spelling milisec -> ms in snd_ps3 module parameter description
Fix spelling mistakes in comments
Revert conflicting V4L changes
i7core_edac: fix typos in comments
mm/rmap.c: fix comment
sound, ca0106: Fix assignment to 'channel'.
hrtimer: fix a typo in comment
init/Kconfig: fix typo
anon_inodes: fix wrong function name in comment
fix comment typos concerning "consistent"
poll: fix a typo in comment
...Fix up trivial conflicts in:
- drivers/net/wireless/iwlwifi/iwl-core.c (moved to iwl-legacy.c)
- fs/ext4/ext4.hAlso fix missed 'diabled' typo in drivers/net/bnx2x/bnx2x.h while at it.
23 Dec, 2010
1 commit
-
Conflicts:
MAINTAINERS
arch/arm/mach-omap2/pm24xx.c
drivers/scsi/bfa/bfa_fcpim.cNeeded to update to apply fixes for which the old branch was too
outdated.
30 Nov, 2010
1 commit
-
Driver init() function should return error code.
Also fix tvenc_clk leak.Signed-off-by: Vasiliy Kulikov
Signed-off-by: Greg Kroah-Hartman
17 Nov, 2010
1 commit
-
Signed-off-by: Joe Perches
Signed-off-by: Greg Kroah-Hartman
16 Nov, 2010
1 commit
-
backlight_device_register has been expecting a const "ops" argument, and using
it as such, since 9905a43b2d563e6f89e4c63c4278ada03f2ebb14. Let's make the
remaining backlight_ops instances const.Inspired by hunks of the grsecurity patch, updated for newer kernels.
Signed-off-by: Lionel Debroux
Acked-by: Ingo Molnar
Signed-off-by: Jiri Kosina
10 Nov, 2010
1 commit
-
Changed -objs to -y in Makefile.
Signed-off-by: Tracey Dent
Signed-off-by: Greg Kroah-Hartman
30 Oct, 2010
1 commit
-
Fixup the last remaining users of DECLARE_MUTEX and init_MUTEX.
Scripted conversion, resulting code is binary equivalent.
Signed-off-by: Thomas Gleixner
Cc: Greg Kroah-Hartman
LKML-Reference:
17 Sep, 2010
1 commit
-
Signed-off-by: Joe Perches
Signed-off-by: Greg Kroah-Hartman
08 Sep, 2010
1 commit
-
init_MUTEX(_LOCKED) and DECLARE_MUTEX are going away. Bulk convert
staging users.Signed-off-by: Thomas Gleixner
Signed-off-by: Greg Kroah-Hartman
27 Jul, 2010
1 commit
-
Start cleaning up the msm framebuffer in preparation
for integration with mainline. Remove unused drivers.Signed-off-by: Neil Leeder
Signed-off-by: Greg Kroah-Hartman
23 Jul, 2010
1 commit
-
Use %p instead of %08x in printk().
Signed-off-by: Kulikov Vasiliy
Acked-by: David Brown
Acked-by: Daniel Walker
Signed-off-by: Greg Kroah-Hartman
09 Jul, 2010
1 commit
-
These could not be detected by the semantic patch.
Signed-off-by: Arnd Bergmann
19 Jun, 2010
1 commit
-
Remove duplicated #include('s) in
drivers/staging/msm/mddihost.h
drivers/staging/msm/msm_fb_def.h
drivers/staging/msm/staging-devices.cSigned-off-by: Huang Weiyi
Signed-off-by: Greg Kroah-Hartman
05 Jun, 2010
1 commit
-
Qualcomm development of the MSM SOC framebuffer driver has
diverged significantly from the driver used by Android. This
is a snapshot of our current driver, in all it's agony. We are
putting this in staging to help with the process of converging
the two drivers.At this point, the driver has been tested only in dumb
framebuffer mode.Signed-off-by: Stepan Moskovchenko
Signed-off-by: David Brown
Signed-off-by: Abhijeet Dharmapurikar
[dwalker@codeaurora.org: added a small compile fix and TODO.]
Signed-off-by: Daniel Walker
Signed-off-by: Greg Kroah-Hartman