~ubuntu-branches/ubuntu/trusty/linux-lts-vivid/trusty-proposed

« back to all changes in this revision

Viewing changes to arch/unicore32/boot/compressed/misc.c

  • Committer: Package Import Robot
  • Author(s): Luis Henriques, Kamal Mostafa, K. Y. Srinivasan
  • Date: 2015-11-23 13:24:32 UTC
  • Revision ID: package-import@ubuntu.com-20151123132432-903xk653el60bfun
[ Kamal Mostafa ]

* Release Tracking Bug
  - LP: #1518519

[ K. Y. Srinivasan ]

* SAUCE: Drivers: hv: vmbus: Fix a Host signaling bug
  - LP: #1508706

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
        output_ptr = get_unaligned_le32(tmp);
120
120
 
121
121
        arch_decomp_puts("Uncompressing Linux...");
122
 
        decompress(input_data, input_data_end - input_data, NULL, NULL,
123
 
                        output_data, NULL, error);
 
122
        __decompress(input_data, input_data_end - input_data, NULL, NULL,
 
123
                        output_data, 0, NULL, error);
124
124
        arch_decomp_puts(" done, booting the kernel.\n");
125
125
        return output_ptr;
126
126
}