diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-03-06 14:24:21 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-03-06 14:24:21 +0100 |
commit | 4fda87df09bee2b1bf236aba408c3236d4f1fbca (patch) | |
tree | f1ec4a5b8696c89141bcdc25b6920b3caf5c9f97 /drivers/block/zram/zram_drv.c | |
parent | 70658b99490dd86cfdbf4fca117bbe2ef9a80d03 (diff) | |
parent | 3b8f4a70b840cff298010481d39404e9c39030d1 (diff) |
Merge tag 'asoc-fix-v4.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linussound-4.0-rc3
ASoC: Fixes for v4.0
A few driver specific fixes here, none of them earth shattering in
themselves, that have accumliated since the opening of the merge window.
Diffstat (limited to 'drivers/block/zram/zram_drv.c')
-rw-r--r-- | drivers/block/zram/zram_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c index 8e233edd7a09..871bd3550cb0 100644 --- a/drivers/block/zram/zram_drv.c +++ b/drivers/block/zram/zram_drv.c @@ -528,7 +528,7 @@ out_cleanup: static inline void update_used_max(struct zram *zram, const unsigned long pages) { - int old_max, cur_max; + unsigned long old_max, cur_max; old_max = atomic_long_read(&zram->stats.max_used_pages); |