-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow char literal convertion into unsigned (#82)
required to compile stm32mp1xxx dtb Also includes tests. Fixes #81
- Loading branch information
1 parent
39a58cf
commit 23387dd
Showing
4 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/dts-v1/; | ||
|
||
/ { | ||
|
||
gpio_port = <('F' - 'A')>; | ||
test_nl = <('\n')>; | ||
test_cr = <('\r')>; | ||
test_tab = <('\t')>; | ||
test_bs = <('\\')>; | ||
test_sq = <('\'')>; | ||
test_zero = <('\0')>; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/dts-v1/; | ||
|
||
/ { | ||
|
||
gpio_port = <0x5>; | ||
test_nl = <0xa>; | ||
test_cr = <0xd>; | ||
test_tab = <0x9>; | ||
test_bs = <0x5c>; | ||
test_sq = <0x27>; | ||
test_zero = <0x0>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters