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
4b867157
Commit
4b867157
authored
Jun 03, 2015
by
Jesper Nilsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CRISv32: Squash compile warnings for axisflashmap
Signed-off-by:
Jesper Nilsson
<
jesper.nilsson@axis.com
>
parent
939b83fb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
arch/cris/arch-v32/drivers/axisflashmap.c
arch/cris/arch-v32/drivers/axisflashmap.c
+5
-4
No files found.
arch/cris/arch-v32/drivers/axisflashmap.c
View file @
4b867157
...
...
@@ -313,6 +313,7 @@ static int __init init_axis_flash(void)
size_t
len
;
int
ram_rootfs_partition
=
-
1
;
/* -1 => no RAM rootfs partition */
int
part
;
struct
mtd_partition
*
partition
;
/* We need a root fs. If it resides in RAM, we need to use an
* MTDRAM device, so it must be enabled in the kernel config,
...
...
@@ -329,7 +330,7 @@ static int __init init_axis_flash(void)
main_mtd
=
flash_probe
();
if
(
main_mtd
)
printk
(
KERN_INFO
"%s: 0x%08x bytes of NOR flash memory.
\n
"
,
printk
(
KERN_INFO
"%s: 0x%08
ll
x bytes of NOR flash memory.
\n
"
,
main_mtd
->
name
,
main_mtd
->
size
);
#ifdef CONFIG_ETRAX_NANDFLASH
...
...
@@ -388,10 +389,10 @@ static int __init init_axis_flash(void)
#endif
if
(
main_mtd
)
{
loff_t
ptable_sector
=
CONFIG_ETRAX_PTABLE_SECTOR
;
main_mtd
->
owner
=
THIS_MODULE
;
axisflash_mtd
=
main_mtd
;
loff_t
ptable_sector
=
CONFIG_ETRAX_PTABLE_SECTOR
;
/* First partition (rescue) is always set to the default. */
pidx
++
;
...
...
@@ -517,7 +518,7 @@ static int __init init_axis_flash(void)
/* Decide whether to use default partition table. */
/* Only use default table if we actually have a device (main_mtd) */
struct
mtd_partition
*
partition
=
&
axis_partitions
[
0
];
partition
=
&
axis_partitions
[
0
];
if
(
main_mtd
&&
!
ptable_ok
)
{
memcpy
(
axis_partitions
,
axis_default_partitions
,
sizeof
(
axis_default_partitions
));
...
...
@@ -580,7 +581,7 @@ static int __init init_axis_flash(void)
printk
(
KERN_INFO
"axisflashmap: Adding RAM partition "
"for rootfs image.
\n
"
);
err
=
mtdram_init_device
(
mtd_ram
,
(
void
*
)
partition
[
part
].
offset
,
(
void
*
)
(
u_int32_t
)
partition
[
part
].
offset
,
partition
[
part
].
size
,
partition
[
part
].
name
);
if
(
err
)
...
...
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