File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 179
179
};
180
180
181
181
&hdmi0 {
182
- dmas = <&dma (10|(1<<27)|(1<<28 )|(0<<16)|(15<<20))>;
182
+ dmas = <&dma (10|(1<<27)|(1<<24 )|(0<<16)|(15<<20))>;
183
183
status = "disabled";
184
184
};
185
185
188
188
};
189
189
190
190
&hdmi1 {
191
- dmas = <&dma (17|(1<<27)|(1<<28 )|(0<<16)|(15<<20))>;
191
+ dmas = <&dma (17|(1<<27)|(1<<24 )|(0<<16)|(15<<20))>;
192
192
status = "disabled";
193
193
};
194
194
Original file line number Diff line number Diff line change @@ -172,12 +172,12 @@ struct bcm2835_desc {
172
172
0 : BCM2835_DMA_WAIT_RESP)
173
173
174
174
/* A fake bit to request that the driver requires wide reads */
175
- #define BCM2835_DMA_WIDE_SOURCE BIT(28 )
175
+ #define BCM2835_DMA_WIDE_SOURCE BIT(24 )
176
176
#define WIDE_SOURCE (x ) ((x & BCM2835_DMA_WIDE_SOURCE) ? \
177
177
BCM2835_DMA_S_WIDTH : 0)
178
178
179
179
/* A fake bit to request that the driver requires wide writes */
180
- #define BCM2835_DMA_WIDE_DEST BIT(29 )
180
+ #define BCM2835_DMA_WIDE_DEST BIT(25 )
181
181
#define WIDE_DEST (x ) ((x & BCM2835_DMA_WIDE_DEST) ? \
182
182
BCM2835_DMA_D_WIDTH : 0)
183
183
You can’t perform that action at this time.
0 commit comments