|
@@ -70,8 +70,8 @@ void sm750_hw_cursor_setPos(struct lynx_cursor *cursor,
|
|
{
|
|
{
|
|
u32 reg;
|
|
u32 reg;
|
|
|
|
|
|
- reg = (((y << HWC_LOCATION_Y_SHIFT) & HWC_LOCATION_Y_MASK) |
|
|
|
|
- (x & HWC_LOCATION_X_MASK));
|
|
|
|
|
|
+ reg = ((y << HWC_LOCATION_Y_SHIFT) & HWC_LOCATION_Y_MASK) |
|
|
|
|
+ (x & HWC_LOCATION_X_MASK);
|
|
poke32(HWC_LOCATION, reg);
|
|
poke32(HWC_LOCATION, reg);
|
|
}
|
|
}
|
|
void sm750_hw_cursor_setColor(struct lynx_cursor *cursor,
|
|
void sm750_hw_cursor_setColor(struct lynx_cursor *cursor,
|