Remove the function get_safe_write_buffer() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck.
Signed-off-by: Rickard Strandqvist <[email protected]> --- kernel/power/snapshot.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/kernel/power/snapshot.c b/kernel/power/snapshot.c index 791a618..dac8919 100644 --- a/kernel/power/snapshot.c +++ b/kernel/power/snapshot.c @@ -2309,8 +2309,6 @@ static inline void free_highmem_data(void) free_image_page(buffer, PG_UNSAFE_CLEAR); } #else -static inline int get_safe_write_buffer(void) { return 0; } - static unsigned int count_highmem_image_pages(struct memory_bitmap *bm) { return 0; } -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

