Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

init: Remove CONFIG_PPC_ISERIES

It is no longer selectable, so remove the check for it.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

authored by

Stephen Rothwell and committed by
Benjamin Herrenschmidt
bc58450b f5339277

+2 -2
+2 -2
init/do_mounts_rd.c
··· 178 178 char *buf = NULL; 179 179 unsigned short rotate = 0; 180 180 decompress_fn decompressor = NULL; 181 - #if !defined(CONFIG_S390) && !defined(CONFIG_PPC_ISERIES) 181 + #if !defined(CONFIG_S390) 182 182 char rotator[4] = { '|' , '/' , '-' , '\\' }; 183 183 #endif 184 184 ··· 264 264 } 265 265 sys_read(in_fd, buf, BLOCK_SIZE); 266 266 sys_write(out_fd, buf, BLOCK_SIZE); 267 - #if !defined(CONFIG_S390) && !defined(CONFIG_PPC_ISERIES) 267 + #if !defined(CONFIG_S390) 268 268 if (!(i % 16)) { 269 269 printk("%c\b", rotator[rotate & 0x3]); 270 270 rotate++;