From 43eee0f2056c36b942365087ee5a49b50e87388e Mon Sep 17 00:00:00 2001 From: Michael Neuling Date: Thu, 28 May 2015 20:25:54 +1000 Subject: test/hello_world: Remove include file Signed-off-by: Michael Neuling Signed-off-by: Stewart Smith --- test/hello_world/Makefile.check | 2 +- test/hello_world/hello_kernel/asm-utils.h | 23 ----------------------- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 test/hello_world/hello_kernel/asm-utils.h (limited to 'test') diff --git a/test/hello_world/Makefile.check b/test/hello_world/Makefile.check index a730fbf..5b330ed 100644 --- a/test/hello_world/Makefile.check +++ b/test/hello_world/Makefile.check @@ -8,7 +8,7 @@ $(HELLO_WORLD_TEST:%=%-check) : %-check: % skiboot.lid ./test/hello_world/run_hello_world.sh test/hello_world/hello_kernel/hello_kernel.o: test/hello_world/hello_kernel/hello_kernel.S test/hello_world/hello_kernel/hello_kernel.ld - $(call Q,CC, $(CC) -m64 -c -MMD -Itest/hello_world/hello_kernel/ -o $@ $< ,$@) + $(call Q,CC, $(CC) -m64 -c -MMD -o $@ $< ,$@) hello_kernel_LDFLAGS=-m64 -Wl,--build-id=none -T test/hello_world/hello_kernel/hello_kernel.ld -ffreestanding -nostdlib -Ttext=0x0 -lgcc diff --git a/test/hello_world/hello_kernel/asm-utils.h b/test/hello_world/hello_kernel/asm-utils.h deleted file mode 100644 index bddf771..0000000 --- a/test/hello_world/hello_kernel/asm-utils.h +++ /dev/null @@ -1,23 +0,0 @@ -/* Copyright 2013-2014 IBM Corp. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - * implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#define LOAD_IMM64(r, e) \ - lis r,(e)@highest; \ - ori r,r,(e)@higher; \ - rldicr r,r, 32, 31; \ - oris r,r, (e)@h; \ - ori r,r, (e)@l; - -- cgit v1.1