sstfb.c (002c6ca75289a4ac4f6738213dd2d258704886e4) sstfb.c (0ba2fa8cbd29278a180ac90bd66b2c0bbdeacc89)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * linux/drivers/video/sstfb.c -- voodoo graphics frame buffer
4 *
5 * Copyright (c) 2000-2002 Ghozlane Toumi <gtoumi@laposte.net>
6 *
7 * Created 15 Jan 2000 by Ghozlane Toumi
8 *

--- 1489 unchanged lines hidden (view full) ---

1498 .remove = sstfb_remove,
1499};
1500
1501
1502static int sstfb_init(void)
1503{
1504 char *option = NULL;
1505
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * linux/drivers/video/sstfb.c -- voodoo graphics frame buffer
4 *
5 * Copyright (c) 2000-2002 Ghozlane Toumi <gtoumi@laposte.net>
6 *
7 * Created 15 Jan 2000 by Ghozlane Toumi
8 *

--- 1489 unchanged lines hidden (view full) ---

1498 .remove = sstfb_remove,
1499};
1500
1501
1502static int sstfb_init(void)
1503{
1504 char *option = NULL;
1505
1506 if (fb_modesetting_disabled("sstfb"))
1507 return -ENODEV;
1508
1506 if (fb_get_options("sstfb", &option))
1507 return -ENODEV;
1508 sstfb_setup(option);
1509
1510 return pci_register_driver(&sstfb_driver);
1511}
1512
1513static void sstfb_exit(void)

--- 25 unchanged lines hidden ---
1509 if (fb_get_options("sstfb", &option))
1510 return -ENODEV;
1511 sstfb_setup(option);
1512
1513 return pci_register_driver(&sstfb_driver);
1514}
1515
1516static void sstfb_exit(void)

--- 25 unchanged lines hidden ---