Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1450317 authored by Sebastian Siewior's avatar Sebastian Siewior Committed by Arnd Bergmann
Browse files

[CELL] spufs: remove section mismatch warning



WARNING: arch/powerpc/platforms/cell/spufs/spufs.o(.init.text+0x158): Section
mismatch: reference to .exit.text:.spu_sched_exit (between '.init_module' and
'.spu_sched_init')

was introduced by c99c1994
This patch removes the warning.

Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: default avatarSebastian Siewior <sebastian@breakpoint.cc>
Signed-off-by: default avatarArnd Bergmann <arnd.bergmann@de.ibm.com>
parent ce21b3c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -783,7 +783,7 @@ int __init spu_sched_init(void)
	return err;
}

void __exit spu_sched_exit(void)
void spu_sched_exit(void)
{
	struct spu *spu, *tmp;
	int node;
+1 −1
Original line number Diff line number Diff line
@@ -235,7 +235,7 @@ void spu_set_timeslice(struct spu_context *ctx);
void spu_update_sched_info(struct spu_context *ctx);
void __spu_update_sched_info(struct spu_context *ctx);
int __init spu_sched_init(void);
void __exit spu_sched_exit(void);
void spu_sched_exit(void);

extern char *isolated_loader;