Skip to content

Commit

Permalink
sh: move machtypes.h to include/generated
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Michal Marek <mmarek@suse.cz>
  • Loading branch information
Sam Ravnborg authored and Michal Marek committed Dec 12, 2009
1 parent 6620653 commit 3252b11
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 13 deletions.
10 changes: 3 additions & 7 deletions arch/sh/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,7 @@ libs-$(CONFIG_SUPERH64) := arch/sh/lib64/ $(libs-y)

BOOT_TARGETS = uImage uImage.bz2 uImage.gz uImage.lzma uImage.srec uImage.bin \
zImage vmlinux.srec romImage
PHONY += maketools $(BOOT_TARGETS) FORCE

maketools: include/linux/version.h FORCE
$(Q)$(MAKE) $(build)=arch/sh/tools include/asm-sh/machtypes.h
PHONY += $(BOOT_TARGETS)

all: $(KBUILD_IMAGE)

Expand All @@ -217,7 +214,8 @@ $(BOOT_TARGETS): vmlinux

compressed: zImage

archprepare: maketools
archprepare:
$(Q)$(MAKE) $(build)=arch/sh/tools include/generated/machtypes.h

archclean:
$(Q)$(MAKE) $(clean)=$(boot)
Expand All @@ -234,5 +232,3 @@ define archhelp
@echo ' uImage.bz2 - Kernel-only image for U-Boot (bzip2)'
@echo ' uImage.lzma - Kernel-only image for U-Boot (lzma)'
endef

CLEAN_FILES += include/asm-sh/machtypes.h
2 changes: 1 addition & 1 deletion arch/sh/drivers/pci/fixups-rts7751r2d.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <mach/lboxre2.h>
#include <mach/r2d.h>
#include "pci-sh4.h"
#include <asm/machtypes.h>
#include <generated/machtypes.h>

#define PCIMCR_MRSET_OFF 0xBFFFFFFF
#define PCIMCR_RFSH_OFF 0xFFFFFFFB
Expand Down
1 change: 0 additions & 1 deletion arch/sh/include/asm/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion arch/sh/include/asm/machvec.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#include <linux/types.h>
#include <linux/time.h>
#include <asm/machtypes.h>
#include <generated/machtypes.h>

struct sh_machine_vector {
void (*mv_setup)(char **cmdline_p);
Expand Down
4 changes: 2 additions & 2 deletions arch/sh/tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Shamelessly cloned from ARM.
#

include/asm-sh/machtypes.h: $(src)/gen-mach-types $(src)/mach-types
include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types
@echo ' Generating $@'
$(Q)if [ ! -d include/asm-sh ]; then mkdir -p include/asm-sh; fi
$(Q)mkdir -p $(dir $@)
$(Q)$(AWK) -f $^ > $@ || { rm -f $@; /bin/false; }
2 changes: 1 addition & 1 deletion arch/sh/tools/gen-mach-types
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/awk
#
# Awk script to generate include/asm-sh/machtypes.h
# Awk script to generate include/generated/machtypes.h
# Heavily based on arch/arm/tools/gen-mach-types
#
BEGIN { nr = 0 }
Expand Down

0 comments on commit 3252b11

Please sign in to comment.