diff options
author | Helge Deller <deller@gmx.de> | 2022-06-02 14:55:26 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2022-06-04 16:47:03 +0300 |
commit | b046f984814af7985f444150ec28716d42d00d9a (patch) | |
tree | fac1b812a67dabf277a398e1a55356845a468852 /drivers/video/console/sticon.c | |
parent | cf936af790a3ef5f41ff687ec91bfbffee141278 (diff) | |
download | linux-b046f984814af7985f444150ec28716d42d00d9a.tar.xz |
parisc/stifb: Keep track of hardware path of graphics card
Keep the pa_path (hardware path) of the graphics card in sti_struct and use
this info to give more useful info which card is currently being used.
Signed-off-by: Helge Deller <deller@gmx.de>
Cc: stable@vger.kernel.org # v5.10+
Diffstat (limited to 'drivers/video/console/sticon.c')
-rw-r--r-- | drivers/video/console/sticon.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/video/console/sticon.c b/drivers/video/console/sticon.c index 40496e9e9b43..f304163e87e9 100644 --- a/drivers/video/console/sticon.c +++ b/drivers/video/console/sticon.c @@ -46,6 +46,7 @@ #include <linux/slab.h> #include <linux/font.h> #include <linux/crc32.h> +#include <linux/fb.h> #include <asm/io.h> @@ -392,7 +393,9 @@ static int __init sticonsole_init(void) for (i = 0; i < MAX_NR_CONSOLES; i++) font_data[i] = STI_DEF_FONT; - pr_info("sticon: Initializing STI text console.\n"); + pr_info("sticon: Initializing STI text console on %s at [%s]\n", + sticon_sti->sti_data->inq_outptr.dev_name, + sticon_sti->pa_path); console_lock(); err = do_take_over_console(&sti_con, 0, MAX_NR_CONSOLES - 1, PAGE0->mem_cons.cl_class != CL_DUPLEX); |