diff options
-rw-r--r-- | Documentation/EDID/edid.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/EDID/edid.S b/Documentation/EDID/edid.S index 7ac03276d7a2..ef082dcc6084 100644 --- a/Documentation/EDID/edid.S +++ b/Documentation/EDID/edid.S | |||
@@ -59,9 +59,9 @@ | |||
59 | /* Fixed header pattern */ | 59 | /* Fixed header pattern */ |
60 | header: .byte 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00 | 60 | header: .byte 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00 |
61 | 61 | ||
62 | mfg_id: .word swap16(mfgname2id(MFG_LNX1, MFG_LNX2, MFG_LNX3)) | 62 | mfg_id: .hword swap16(mfgname2id(MFG_LNX1, MFG_LNX2, MFG_LNX3)) |
63 | 63 | ||
64 | prod_code: .word 0 | 64 | prod_code: .hword 0 |
65 | 65 | ||
66 | /* Serial number. 32 bits, little endian. */ | 66 | /* Serial number. 32 bits, little endian. */ |
67 | serial_number: .long SERIAL | 67 | serial_number: .long SERIAL |
@@ -177,7 +177,7 @@ std_vres: .byte (XY_RATIO<<6)+VFREQ-60 | |||
177 | 177 | ||
178 | descriptor1: | 178 | descriptor1: |
179 | /* Pixel clock in 10 kHz units. (0.-655.35 MHz, little-endian) */ | 179 | /* Pixel clock in 10 kHz units. (0.-655.35 MHz, little-endian) */ |
180 | clock: .word CLOCK/10 | 180 | clock: .hword CLOCK/10 |
181 | 181 | ||
182 | /* Horizontal active pixels 8 lsbits (0-4095) */ | 182 | /* Horizontal active pixels 8 lsbits (0-4095) */ |
183 | x_act_lsb: .byte XPIX&0xff | 183 | x_act_lsb: .byte XPIX&0xff |