Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
2b3e5023
Commit
2b3e5023
authored
Nov 02, 2010
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MIPS: Swarm: Fix typo in symbol name: RTC_M4LT81 -> RTC_M41T81
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
a4851d8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
arch/mips/sibyte/swarm/setup.c
arch/mips/sibyte/swarm/setup.c
+4
-4
No files found.
arch/mips/sibyte/swarm/setup.c
View file @
2b3e5023
...
...
@@ -82,7 +82,7 @@ int swarm_be_handler(struct pt_regs *regs, int is_fixup)
enum
swarm_rtc_type
{
RTC_NONE
,
RTC_XICOR
,
RTC_M4
LT81
RTC_M4
1T81
,
};
enum
swarm_rtc_type
swarm_rtc_type
;
...
...
@@ -96,7 +96,7 @@ void read_persistent_clock(struct timespec *ts)
sec
=
xicor_get_time
();
break
;
case
RTC_M4
L
T81
:
case
RTC_M4
1
T81
:
sec
=
m41t81_get_time
();
break
;
...
...
@@ -115,7 +115,7 @@ int rtc_mips_set_time(unsigned long sec)
case
RTC_XICOR
:
return
xicor_set_time
(
sec
);
case
RTC_M4
L
T81
:
case
RTC_M4
1
T81
:
return
m41t81_set_time
(
sec
);
case
RTC_NONE
:
...
...
@@ -141,7 +141,7 @@ void __init plat_mem_setup(void)
if
(
xicor_probe
())
swarm_rtc_type
=
RTC_XICOR
;
if
(
m41t81_probe
())
swarm_rtc_type
=
RTC_M4
L
T81
;
swarm_rtc_type
=
RTC_M4
1
T81
;
#ifdef CONFIG_VT
screen_info
=
(
struct
screen_info
)
{
...
...
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