aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/spectra/ffsdefs.h
diff options
context:
space:
mode:
authorChristopher Kenna <cjk@cs.unc.edu>2012-10-01 19:17:04 -0400
committerChristopher Kenna <cjk@cs.unc.edu>2012-10-01 19:17:04 -0400
commit135d68afd05af5d7d7bf08f0c3e6429b17f0df98 (patch)
tree4b28944b5d77094b52bff8e2e26cb5f9b4f810af /drivers/staging/spectra/ffsdefs.h
parent2f15a80553f18250b074efbc7b61b2320eb64e90 (diff)
Revert performance CPU frequency scaler.HEADodroidx
I'm not sure why the ODROID-X people changes this. My CPUs are all running fine without calls to cpu_up.
Diffstat (limited to 'drivers/staging/spectra/ffsdefs.h')
0 files changed, 0 insertions, 0 deletions
g <sam@ravnborg.org> 2009-01-14 15:38:20 -0500 Revert "kbuild: strip generated symbols from *.ko"' href='/cgit/cgit.cgi/litmus-rt-imx6.git/commit/scripts/Makefile.modinst?id=2ea038917bbdd51a7ae4a898c6a04641324dd033'>2ea038917bbd
1da177e4c3f4


9b213118fa4b
1da177e4c3f4




4f1933620f57





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35



                                                                            
                  

          
                              





                                                                                     
                   



                                      
                                                                                          


                                                                       
                                                                                 




                                                                





                                                                       
# ==========================================================================
# Installing modules
# ==========================================================================

PHONY := __modinst
__modinst:

include scripts/Kbuild.include

#

__modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
modules := $(patsubst %.o,%.ko,$(wildcard $(__modules:.ko=.o)))

PHONY += $(modules)
__modinst: $(modules)
	@:

quiet_cmd_modules_install = INSTALL $@
      cmd_modules_install = mkdir -p $(2); cp $@ $(2) ; $(mod_strip_cmd) $(2)/$(notdir $@)

# Modules built outside the kernel source tree go into extra by default
INSTALL_MOD_DIR ?= extra
ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D))

modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D))

$(modules):
	$(call cmd,modules_install,$(MODLIB)/$(modinst_dir))


# Declare the contents of the .PHONY variable as phony.  We keep that
# information in a variable se we can use it in if_changed and friends.

.PHONY: $(PHONY)