summaryrefslogtreecommitdiff
path: root/arch/parisc/boot/compressed/misc.c
Commit message (Collapse)AuthorAge
* parisc: Fix indenting in puts()Helge Deller2017-12-17
| | | | | | | | | | | Static analysis tools complain that we intended to have curly braces around this indent block. In this case this assumption is wrong, so fix the indenting. Fixes: 2f3c7b8137ef ("parisc: Add core code for self-extracting kernel") Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Helge Deller <deller@gmx.de> Cc: <stable@vger.kernel.org> # v4.14+
* parisc: Unbreak bootloader due to gcc-7 optimizationsHelge Deller2017-09-22
| | | | | | | | | | | | | | gcc-7 optimizes the byte-wise accesses of get_unaligned_le32() into word-wise accesses if the 32-bit integer output_len is declared as external. This panics then the bootloader since we don't have the unaligned access fault trap handler installed during boot time. Avoid this optimization by declaring output_len as byte-aligned and thus unbreak the bootloader code. Additionally, compile the boot code optimized for size. Signed-off-by: Helge Deller <deller@gmx.de>
* parisc: Add core code for self-extracting kernelHelge Deller2017-08-22
Signed-off-by: Helge Deller <deller@gmx.de>