Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reform
reform-boundary-uboot
Commits
252a5e07
Commit
252a5e07
authored
16 years ago
by
Haavard Skinnemoen
Browse files
Options
Downloads
Patches
Plain Diff
atmel_mci: Fix printf() format warnings
Signed-off-by:
Haavard Skinnemoen
<
haavard.skinnemoen@atmel.com
>
parent
7f4b009f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/mmc/atmel_mci.c
+8
-8
8 additions, 8 deletions
drivers/mmc/atmel_mci.c
with
8 additions
and
8 deletions
drivers/mmc/atmel_mci.c
+
8
−
8
View file @
252a5e07
...
@@ -135,10 +135,10 @@ mmc_cmd(unsigned long cmd, unsigned long arg,
...
@@ -135,10 +135,10 @@ mmc_cmd(unsigned long cmd, unsigned long arg,
status
=
mmci_readl
(
SR
);
status
=
mmci_readl
(
SR
);
}
while
(
!
(
status
&
MMCI_BIT
(
CMDRDY
)));
}
while
(
!
(
status
&
MMCI_BIT
(
CMDRDY
)));
pr_debug
(
"mmc: status 0x%08
l
x
\n
"
,
status
);
pr_debug
(
"mmc: status 0x%08x
\n
"
,
status
);
if
(
status
&
error_flags
)
{
if
(
status
&
error_flags
)
{
printf
(
"mmc: command %lu failed (status: 0x%08
l
x)
\n
"
,
printf
(
"mmc: command %lu failed (status: 0x%08x)
\n
"
,
cmd
,
status
);
cmd
,
status
);
return
-
EIO
;
return
-
EIO
;
}
}
...
@@ -245,7 +245,7 @@ out:
...
@@ -245,7 +245,7 @@ out:
read_error:
read_error:
mmc_cmd
(
MMC_CMD_SEND_STATUS
,
mmc_rca
<<
16
,
&
card_status
,
R1
|
NCR
);
mmc_cmd
(
MMC_CMD_SEND_STATUS
,
mmc_rca
<<
16
,
&
card_status
,
R1
|
NCR
);
printf
(
"mmc: bread failed, status = %08x, card status = %08x
\n
"
,
printf
(
"mmc: bread failed, status = %08x, card status = %08
l
x
\n
"
,
status
,
card_status
);
status
,
card_status
);
goto
out
;
goto
out
;
}
}
...
@@ -284,13 +284,13 @@ static void sd_parse_cid(struct mmc_cid *cid, unsigned long *resp)
...
@@ -284,13 +284,13 @@ static void sd_parse_cid(struct mmc_cid *cid, unsigned long *resp)
static
void
mmc_dump_cid
(
const
struct
mmc_cid
*
cid
)
static
void
mmc_dump_cid
(
const
struct
mmc_cid
*
cid
)
{
{
printf
(
"Manufacturer ID: %02
l
X
\n
"
,
cid
->
mid
);
printf
(
"Manufacturer ID: %02X
\n
"
,
cid
->
mid
);
printf
(
"OEM/Application ID: %04
l
X
\n
"
,
cid
->
oid
);
printf
(
"OEM/Application ID: %04X
\n
"
,
cid
->
oid
);
printf
(
"Product name: %s
\n
"
,
cid
->
pnm
);
printf
(
"Product name: %s
\n
"
,
cid
->
pnm
);
printf
(
"Product Revision: %
l
u.%
l
u
\n
"
,
printf
(
"Product Revision: %u.%u
\n
"
,
cid
->
prv
>>
4
,
cid
->
prv
&
0x0f
);
cid
->
prv
>>
4
,
cid
->
prv
&
0x0f
);
printf
(
"Product Serial Number: %lu
\n
"
,
cid
->
psn
);
printf
(
"Product Serial Number: %lu
\n
"
,
cid
->
psn
);
printf
(
"Manufacturing Date: %02
l
u/%02
l
u
\n
"
,
printf
(
"Manufacturing Date: %02u/%02u
\n
"
,
cid
->
mdt
>>
4
,
cid
->
mdt
&
0x0f
);
cid
->
mdt
>>
4
,
cid
->
mdt
&
0x0f
);
}
}
...
@@ -501,7 +501,7 @@ int mmc_init(int verbose)
...
@@ -501,7 +501,7 @@ int mmc_init(int verbose)
mmc_blkdev
.
part_type
=
PART_TYPE_DOS
;
mmc_blkdev
.
part_type
=
PART_TYPE_DOS
;
mmc_blkdev
.
block_read
=
mmc_bread
;
mmc_blkdev
.
block_read
=
mmc_bread
;
sprintf
((
char
*
)
mmc_blkdev
.
vendor
,
sprintf
((
char
*
)
mmc_blkdev
.
vendor
,
"Man %02x%04x Snr %08x"
,
"Man %02x%04x Snr %08
l
x"
,
cid
.
mid
,
cid
.
oid
,
cid
.
psn
);
cid
.
mid
,
cid
.
oid
,
cid
.
psn
);
strncpy
((
char
*
)
mmc_blkdev
.
product
,
cid
.
pnm
,
strncpy
((
char
*
)
mmc_blkdev
.
product
,
cid
.
pnm
,
sizeof
(
mmc_blkdev
.
product
));
sizeof
(
mmc_blkdev
.
product
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment