Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
41660e9a
Commit
41660e9a
authored
Aug 24, 2008
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sparc64: Allow chmc to be built as a module.
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
881d021a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
2 deletions
+17
-2
arch/sparc64/Kconfig
arch/sparc64/Kconfig
+11
-0
arch/sparc64/kernel/Makefile
arch/sparc64/kernel/Makefile
+2
-1
arch/sparc64/kernel/sparc64_ksyms.c
arch/sparc64/kernel/sparc64_ksyms.c
+2
-0
arch/sparc64/kernel/traps.c
arch/sparc64/kernel/traps.c
+2
-1
No files found.
arch/sparc64/Kconfig
View file @
41660e9a
...
...
@@ -191,6 +191,17 @@ config US2E_FREQ
If in doubt, say N.
config US3_MC
tristate "UltraSPARC-III Memory Controller driver"
default y
help
This adds a driver for the UltraSPARC-III memory controller.
Loading this driver allows exact mnemonic strings to be
printed in the event of a memory error, so that the faulty DIMM
on the motherboard can be matched to the error.
If in doubt, say Y, as this information can be very useful.
# Global things across all Sun machines.
config GENERIC_LOCKBREAK
bool
...
...
arch/sparc64/kernel/Makefile
View file @
41660e9a
...
...
@@ -11,7 +11,7 @@ obj-y := process.o setup.o cpu.o idprom.o \
traps.o auxio.o una_asm.o sysfs.o iommu.o
\
irq.o ptrace.o time.o sys_sparc.o signal.o
\
unaligned.o central.o pci.o starfire.o
\
power.o sbus.o sparc64_ksyms.o
chmc.o
\
power.o sbus.o sparc64_ksyms.o
\
visemul.o prom.o of_device.o hvapi.o sstate.o mdesc.o
obj-$(CONFIG_DYNAMIC_FTRACE)
+=
ftrace.o
...
...
@@ -25,6 +25,7 @@ obj-$(CONFIG_COMPAT) += sys32.o sys_sparc32.o signal32.o
obj-$(CONFIG_MODULES)
+=
module.o
obj-$(CONFIG_US3_FREQ)
+=
us3_cpufreq.o
obj-$(CONFIG_US2E_FREQ)
+=
us2e_cpufreq.o
obj-$(CONFIG_US3_MC)
+=
chmc.o
obj-$(CONFIG_KPROBES)
+=
kprobes.o
obj-$(CONFIG_SUN_LDOMS)
+=
ldc.o vio.o viohs.o ds.o
obj-$(CONFIG_AUDIT)
+=
audit.o
...
...
arch/sparc64/kernel/sparc64_ksyms.c
View file @
41660e9a
...
...
@@ -299,3 +299,5 @@ EXPORT_SYMBOL(xor_niagara_2);
EXPORT_SYMBOL
(
xor_niagara_3
);
EXPORT_SYMBOL
(
xor_niagara_4
);
EXPORT_SYMBOL
(
xor_niagara_5
);
EXPORT_SYMBOL_GPL
(
real_hard_smp_processor_id
);
arch/sparc64/kernel/traps.c
View file @
41660e9a
...
...
@@ -166,6 +166,7 @@ int register_dimm_printer(dimm_printer_t func)
return
ret
;
}
EXPORT_SYMBOL_GPL
(
register_dimm_printer
);
void
unregister_dimm_printer
(
dimm_printer_t
func
)
{
...
...
@@ -176,7 +177,7 @@ void unregister_dimm_printer(dimm_printer_t func)
dimm_handler
=
NULL
;
spin_unlock_irqrestore
(
&
dimm_handler_lock
,
flags
);
}
EXPORT_SYMBOL_GPL
(
unregister_dimm_printer
);
void
spitfire_insn_access_exception
(
struct
pt_regs
*
regs
,
unsigned
long
sfsr
,
unsigned
long
sfar
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment