关闭 2.6内核的 lcd 光标, lcd console

这个办法就是:

写一个哑巴函数,直接返回,形如:
static int dummy_cursor(struct fb_info *info, struct fb_cursor *cursor)
{
return 0;
}

然后给 struct fb_ops 的 .fb_cursor 成员传入这个哑巴函数的地址,形如:

.fb_cursor = dummy_cursor,

黑色小方块就不见了。

你可能感兴趣的:(struct)