Deleted Added
full compact
scvidctl.c (59689) scvidctl.c (60833)
1/*-
2 * Copyright (c) 1998 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1998 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/syscons/scvidctl.c 59689 2000-04-27 13:34:32Z nyan $
26 * $FreeBSD: head/sys/dev/syscons/scvidctl.c 60833 2000-05-23 20:41:01Z jake $
27 */
28
29#include "opt_syscons.h"
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/conf.h>
34#include <sys/signalvar.h>

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

763 if (scp == scp->sc->cur_scp)
764 sc_set_border(scp, scp->border);
765 return 0;
766 }
767
768 return ENOIOCTL;
769}
770
27 */
28
29#include "opt_syscons.h"
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/conf.h>
34#include <sys/signalvar.h>

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

763 if (scp == scp->sc->cur_scp)
764 sc_set_border(scp, scp->border);
765 return 0;
766 }
767
768 return ENOIOCTL;
769}
770
771static LIST_HEAD(, sc_renderer) sc_rndr_list =
771static LIST_HEAD(, struct sc_renderer) sc_rndr_list =
772 LIST_HEAD_INITIALIZER(sc_rndr_list);
773
774int
775sc_render_add(sc_renderer_t *rndr)
776{
777 LIST_INSERT_HEAD(&sc_rndr_list, rndr, link);
778 return 0;
779}

--- 39 unchanged lines hidden ---
772 LIST_HEAD_INITIALIZER(sc_rndr_list);
773
774int
775sc_render_add(sc_renderer_t *rndr)
776{
777 LIST_INSERT_HEAD(&sc_rndr_list, rndr, link);
778 return 0;
779}

--- 39 unchanged lines hidden ---