diff options
-rw-r--r-- | util-linux/fbset.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util-linux/fbset.c b/util-linux/fbset.c index 0eaa7c0a6..768ab80eb 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c | |||
@@ -518,6 +518,9 @@ int fbset_main(int argc, char **argv) | |||
518 | case CMD_DEPTH: | 518 | case CMD_DEPTH: |
519 | var_set.bits_per_pixel = xatou32(argv[1]); | 519 | var_set.bits_per_pixel = xatou32(argv[1]); |
520 | break; | 520 | break; |
521 | case CMD_PIXCLOCK: | ||
522 | var_set.pixclock = xatou32(argv[1]); | ||
523 | break; | ||
521 | #endif | 524 | #endif |
522 | default: | 525 | default: |
523 | bb_perror_msg_and_die("option '%s' not handled", | 526 | bb_perror_msg_and_die("option '%s' not handled", |