Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347749
b: refs/heads/master
c: ade7ffb
h: refs/heads/master
i:
  347747: 334b272
v: v3
  • Loading branch information
Kukjin Kim committed Dec 19, 2012
1 parent cfb443c commit da7c903
Show file tree
Hide file tree
Showing 625 changed files with 6,287 additions and 11,479 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: febd41d59dc4a8125b1b5fd0b947ab795bfe4aa5
refs/heads/master: ade7ffbb9b6f2ab65e69496bc4076e215e2cd8ba
3 changes: 1 addition & 2 deletions trunk/Documentation/ABI/testing/ima_policy
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Description:
lsm: [[subj_user=] [subj_role=] [subj_type=]
[obj_user=] [obj_role=] [obj_type=]]

base: func:= [BPRM_CHECK][FILE_MMAP][FILE_CHECK][MODULE_CHECK]
base: func:= [BPRM_CHECK][FILE_MMAP][FILE_CHECK]
mask:= [MAY_READ] [MAY_WRITE] [MAY_APPEND] [MAY_EXEC]
fsmagic:= hex value
uid:= decimal value
Expand Down Expand Up @@ -53,7 +53,6 @@ Description:
measure func=BPRM_CHECK
measure func=FILE_MMAP mask=MAY_EXEC
measure func=FILE_CHECK mask=MAY_READ uid=0
measure func=MODULE_CHECK uid=0
appraise fowner=0

The default policy measures all executables in bprm_check,
Expand Down
8 changes: 0 additions & 8 deletions trunk/Documentation/devicetree/bindings/arm/davinci/nand.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ Recommended properties :
- ti,davinci-nand-buswidth: buswidth 8 or 16
- ti,davinci-nand-use-bbt: use flash based bad block table support.

nand device bindings may contain additional sub-nodes describing
partitions of the address space. See partition.txt for more detail.

Example(da850 EVM ):
nand_cs3@62000000 {
compatible = "ti,davinci-nand";
Expand All @@ -38,9 +35,4 @@ nand_cs3@62000000 {
ti,davinci-ecc-mode = "hw";
ti,davinci-ecc-bits = <4>;
ti,davinci-nand-use-bbt;

partition@180000 {
label = "ubifs";
reg = <0x180000 0x7e80000>;
};
};
23 changes: 0 additions & 23 deletions trunk/Documentation/devicetree/bindings/mtd/denali-nand.txt

This file was deleted.

49 changes: 0 additions & 49 deletions trunk/Documentation/devicetree/bindings/mtd/flctl-nand.txt

This file was deleted.

12 changes: 7 additions & 5 deletions trunk/Documentation/devicetree/bindings/mtd/fsmc-nand.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
Required properties:
- compatible : "st,spear600-fsmc-nand"
- reg : Address range of the mtd chip
- reg-names: Should contain the reg names "fsmc_regs", "nand_data", "nand_addr" and "nand_cmd"
- reg-names: Should contain the reg names "fsmc_regs" and "nand_data"
- st,ale-off : Chip specific offset to ALE
- st,cle-off : Chip specific offset to CLE

Optional properties:
- bank-width : Width (in bytes) of the device. If not present, the width
Expand All @@ -17,10 +19,10 @@ Example:
#address-cells = <1>;
#size-cells = <1>;
reg = <0xd1800000 0x1000 /* FSMC Register */
0xd2000000 0x0010 /* NAND Base DATA */
0xd2020000 0x0010 /* NAND Base ADDR */
0xd2010000 0x0010>; /* NAND Base CMD */
reg-names = "fsmc_regs", "nand_data", "nand_addr", "nand_cmd";
0xd2000000 0x4000>; /* NAND Base */
reg-names = "fsmc_regs", "nand_data";
st,ale-off = <0x20000>;
st,cle-off = <0x10000>;

bank-width = <1>;
nand-skip-bbtscan;
Expand Down
29 changes: 0 additions & 29 deletions trunk/Documentation/devicetree/bindings/mtd/m25p80.txt

This file was deleted.

3 changes: 0 additions & 3 deletions trunk/Documentation/devicetree/bindings/mtd/mtd-physmap.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ file systems on embedded devices.
unaligned accesses as implemented in the JFFS2 code via memcpy().
By defining "no-unaligned-direct-access", the flash will not be
exposed directly to the MTD users (e.g. JFFS2) any more.
- linux,mtd-name: allow to specify the mtd name for retro capability with
physmap-flash drivers as boot loader pass the mtd partition via the old
device name physmap-flash.

For JEDEC compatible devices, the following additional properties
are defined:
Expand Down
23 changes: 0 additions & 23 deletions trunk/Documentation/devicetree/bindings/pwm/pwm-tiecap.txt

This file was deleted.

23 changes: 0 additions & 23 deletions trunk/Documentation/devicetree/bindings/pwm/pwm-tiehrpwm.txt

This file was deleted.

31 changes: 0 additions & 31 deletions trunk/Documentation/devicetree/bindings/pwm/pwm-tipwmss.txt

This file was deleted.

17 changes: 3 additions & 14 deletions trunk/Documentation/devicetree/bindings/pwm/pwm.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,10 @@ device:
pwm-names = "backlight";
};

Note that in the example above, specifying the "pwm-names" is redundant
because the name "backlight" would be used as fallback anyway.

pwm-specifier typically encodes the chip-relative PWM number and the PWM
period in nanoseconds.

Optionally, the pwm-specifier can encode a number of flags in a third cell:
- bit 0: PWM signal polarity (0: normal polarity, 1: inverse polarity)

Example with optional PWM specifier for inverse polarity

bl: backlight {
pwms = <&pwm 0 5000000 1>;
pwm-names = "backlight";
};
period in nanoseconds. Note that in the example above, specifying the
"pwm-names" is redundant because the name "backlight" would be used as
fallback anyway.

2) PWM controller nodes
-----------------------
Expand Down
18 changes: 0 additions & 18 deletions trunk/Documentation/devicetree/bindings/pwm/spear-pwm.txt

This file was deleted.

17 changes: 0 additions & 17 deletions trunk/Documentation/devicetree/bindings/pwm/ti,twl-pwm.txt

This file was deleted.

17 changes: 0 additions & 17 deletions trunk/Documentation/devicetree/bindings/pwm/ti,twl-pwmled.txt

This file was deleted.

17 changes: 0 additions & 17 deletions trunk/Documentation/devicetree/bindings/pwm/vt8500-pwm.txt

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Recommended properties:

Example:

spi@7000c380 {
spi@7000d600 {
compatible = "nvidia,tegra20-sflash";
reg = <0x7000c380 0x80>;
interrupts = <0 39 0x04>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Recommended properties:

Example:

spi@7000d600 {
slink@7000d600 {
compatible = "nvidia,tegra20-slink";
reg = <0x7000d600 0x200>;
interrupts = <0 82 0x04>;
Expand Down
Loading

0 comments on commit da7c903

Please sign in to comment.