aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2016-09-15 16:47:11 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-22 11:41:54 +0200
commit3e7ec4a0e635d7b95c5ec30df3ed79164bbf3acb (patch)
tree3d167888f3b9736853830b5d9388e68063a2bb99 /drivers/tty
parentvt: Make a comparison <= for readability. (diff)
downloadlinux-dev-3e7ec4a0e635d7b95c5ec30df3ed79164bbf3acb.tar.xz
linux-dev-3e7ec4a0e635d7b95c5ec30df3ed79164bbf3acb.zip
vt: Drop a no longer true comment.
Some guy went on a patching spree, adding 24-bit colour support all around: https://gist.github.com/XVilka/8346728 Signed-off-by: Adam Borowski <kilobyte@angband.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/vt/vt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
index 52442ccf20c0..20d89c2a780a 100644
--- a/drivers/tty/vt/vt.c
+++ b/drivers/tty/vt/vt.c
@@ -1313,11 +1313,11 @@ static int vc_t416_color(struct vc_data *vc, int i,
return i;
if (vc->vc_par[i] == 5 && i + 1 <= vc->vc_npar) {
- /* 256 colours -- ubiquitous */
+ /* 256 colours */
i++;
rgb_from_256(vc->vc_par[i], &c);
} else if (vc->vc_par[i] == 2 && i + 3 <= vc->vc_npar) {
- /* 24 bit -- extremely rare */
+ /* 24 bit */
c.r = vc->vc_par[i + 1];
c.g = vc->vc_par[i + 2];
c.b = vc->vc_par[i + 3];