Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 24 Jul 2012 20:34:56 +0000 (13:34 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 24 Jul 2012 20:34:56 +0000 (13:34 -0700)
Pull trivial tree from Jiri Kosina:
 "Trivial updates all over the place as usual."

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (29 commits)
  Fix typo in include/linux/clk.h .
  pci: hotplug: Fix typo in pci
  iommu: Fix typo in iommu
  video: Fix typo in drivers/video
  Documentation: Add newline at end-of-file to files lacking one
  arm,unicore32: Remove obsolete "select MISC_DEVICES"
  module.c: spelling s/postition/position/g
  cpufreq: Fix typo in cpufreq driver
  trivial: typo in comment in mksysmap
  mach-omap2: Fix typo in debug message and comment
  scsi: aha152x: Fix sparse warning and make printing pointer address more portable.
  Change email address for Steve Glendinning
  Btrfs: fix typo in convert_extent_bit
  via: Remove bogus if check
  netprio_cgroup.c: fix comment typo
  backlight: fix memory leak on obscure error path
  Documentation: asus-laptop.txt references an obsolete Kconfig item
  Documentation: ManagementStyle: fixed typo
  mm/vmscan: cleanup comment error in balance_pgdat
  mm: cleanup on the comments of zone_reclaim_stat
  ...

24 files changed:
1  2 
MAINTAINERS
arch/arm/mach-davinci/Kconfig
arch/arm/mach-omap2/board-apollon.c
arch/arm/mach-omap2/board-omap4panda.c
arch/arm/mach-omap2/omap-mpuss-lowpower.c
arch/arm/mach-omap2/sr_device.c
arch/arm/mach-omap2/twl-common.c
arch/x86/kernel/module.c
drivers/hwmon/emc2103.c
drivers/net/phy/smsc.c
drivers/net/usb/smsc75xx.c
drivers/net/usb/smsc95xx.c
drivers/net/wireless/iwlwifi/iwl-io.c
drivers/power/Kconfig
drivers/video/bfin_adv7393fb.c
drivers/video/exynos/exynos_dp_reg.c
drivers/video/exynos/exynos_mipi_dsi.c
drivers/video/s3c-fb.c
drivers/video/savage/savagefb_driver.c
drivers/video/smscufx.c
fs/btrfs/extent_io.c
include/linux/mmzone.h
mm/vmscan.c
net/core/netprio_cgroup.c

diff --cc MAINTAINERS
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 66c873399abad9679093788fe29a22591430c532,0f8b8aa9e8d79c2144706c1e9cefbd18f38b38d9..3dfebfb8434ff63e9b2ce7a2b2a86a7b01fad281
   *****************************************************************************/
  #include <linux/delay.h>
  #include <linux/device.h>
 +#include <linux/export.h>
  
  #include "iwl-io.h"
- #include"iwl-csr.h"
+ #include "iwl-csr.h"
  #include "iwl-debug.h"
  
  #define IWL_POLL_INTERVAL 10  /* microseconds */
Simple merge
Simple merge
Simple merge
index 6c1f5c314a42b1eccd152cdd07b746883824fa24,115e1b0a1970816d0d51fc172066159e0ffe629a..9908e75ae761e625dd2944207007c702efce1960
@@@ -102,11 -102,9 +102,11 @@@ static void exynos_mipi_update_cfg(stru
        /* set display timing. */
        exynos_mipi_dsi_set_display_mode(dsim, dsim->dsim_config);
  
 +      exynos_mipi_dsi_init_interrupt(dsim);
 +
        /*
         * data from Display controller(FIMD) is transferred in video mode
-        * but in case of command mode, all settigs is updated to registers.
+        * but in case of command mode, all settings are updated to registers.
         */
        exynos_mipi_dsi_stand_by(dsim, 1);
  }
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc mm/vmscan.c
index 66e431060c05616ace60c4d512e4b96e785723ae,8deb5f4da4d9f6d3660c8fbc3f72fb9e4271da9b..347b3ff2a478c91e6ffd98866eeb107aac0f2ddf
@@@ -1567,10 -1659,11 +1567,11 @@@ static int vmscan_swappiness(struct sca
   * by looking at the fraction of the pages scanned we did rotate back
   * onto the active list instead of evict.
   *
-  * nr[0] = anon pages to scan; nr[1] = file pages to scan
+  * nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan
+  * nr[2] = file inactive pages to scan; nr[3] = file active pages to scan
   */
 -static void get_scan_count(struct mem_cgroup_zone *mz, struct scan_control *sc,
 -                         unsigned long *nr, int priority)
 +static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc,
 +                         unsigned long *nr)
  {
        unsigned long anon, file, free;
        unsigned long anon_prio, file_prio;
Simple merge