repo_name
string
path
string
copies
string
size
string
content
string
license
string
mlinuxguy/odroid-c1-kernel-3.19
drivers/video/fbdev/omap2/dss/dss_features.c
75
28384
/* * linux/drivers/video/omap2/dss/dss_features.c * * Copyright (C) 2010 Texas Instruments * Author: Archit Taneja <archit@ti.com> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundat...
gpl-2.0
xiaoleigua/linux
arch/powerpc/sysdev/qe_lib/qe_ic.c
75
11542
/* * arch/powerpc/sysdev/qe_lib/qe_ic.c * * Copyright (C) 2006 Freescale Semiconductor, Inc. All rights reserved. * * Author: Li Yang <leoli@freescale.com> * Based on code from Shlomi Gridish <gridish@freescale.com> * * QUICC ENGINE Interrupt Controller * * This program is free software; you can redistribute...
gpl-2.0
miaoxie/linux-btrfs
drivers/input/misc/ad714x-spi.c
843
2992
/* * AD714X CapTouch Programmable Controller driver (SPI bus) * * Copyright 2009-2011 Analog Devices Inc. * * Licensed under the GPL-2 or later. */ #include <linux/input.h> /* BUS_SPI */ #include <linux/module.h> #include <linux/spi/spi.h> #include <linux/pm.h> #include <linux/types.h> #include "ad714x.h" #defi...
gpl-2.0
Mortifix/SM-G920T
drivers/staging/zcache/ramster/ramster.c
2123
27620
/* * ramster.c * * Copyright (c) 2010-2012, Dan Magenheimer, Oracle Corp. * * RAMster implements peer-to-peer transcendent memory, allowing a "cluster" of * kernels to dynamically pool their RAM so that a RAM-hungry workload on one * machine can temporarily and transparently utilize RAM on another machine * whi...
gpl-2.0
bleached/android_kernel_samsung_msm7x27a
drivers/rtc/rtc-ab8500.c
3147
9427
/* * Copyright (C) ST-Ericsson SA 2010 * * License terms: GNU General Public License (GPL) version 2 * Author: Virupax Sadashivpetimath <virupax.sadashivpetimath@stericsson.com> * * RTC clock driver for the RTC part of the AB8500 Power management chip. * Based on RTC clock driver for the AB3100 Analog Baseband C...
gpl-2.0
m-stein/linux
arch/mips/mti-sead3/sead3-serial.c
3147
1189
/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved. */ #include <linux/module.h> #include <linux/init.h> #include <linux/ser...
gpl-2.0
BENETNATH/android_kernel_acer_A510
net/wireless/ibss.c
3147
12161
/* * Some IBSS support code for cfg80211. * * Copyright 2009 Johannes Berg <johannes@sipsolutions.net> */ #include <linux/etherdevice.h> #include <linux/if_arp.h> #include <linux/slab.h> #include <net/cfg80211.h> #include "wext-compat.h" #include "nl80211.h" void __cfg80211_ibss_joined(struct net_device *dev, co...
gpl-2.0
coldnew/tf700-kernel
lib/argv_split.c
4427
1826
/* * Helper function for splitting a string into an argv-like array. */ #include <linux/kernel.h> #include <linux/ctype.h> #include <linux/string.h> #include <linux/slab.h> #include <linux/module.h> static const char *skip_arg(const char *cp) { while (*cp && !isspace(*cp)) cp++; return cp; } static int count_...
gpl-2.0
djmax81/android_kernel_samsung_exynos5420
net/core/net-sysfs.c
4427
36473
/* * net-sysfs.c - network device class and attributes * * Copyright (c) 2003 Stephen Hemminger <shemminger@osdl.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2...
gpl-2.0
charles1018/kernel_sony_14.4.A.0.157
net/llc/llc_proc.c
5195
6768
/* * proc_llc.c - proc interface for LLC * * Copyright (c) 2001 by Jay Schulist <jschlst@samba.org> * 2002-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br> * * This program can be redistributed or modified under the terms of the * GNU General Public License as published by the Free Software Foundation....
gpl-2.0
santod/NuK3rn3l_htc_m7_GPE-5.0.x
drivers/staging/rtl8192u/ieee80211/ieee80211_tx.c
5451
27282
/****************************************************************************** Copyright(c) 2003 - 2004 Intel Corporation. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Softw...
gpl-2.0
NamelessRom/android_kernel_oppo_msm8939
drivers/media/i2c/tea6420.c
7243
4447
/* tea6420 - i2c-driver for the tea6420 by SGS Thomson Copyright (C) 1998-2003 Michael Hunold <michael@mihu.de> Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl> The tea6420 is a bus controlled audio-matrix with 5 stereo inputs, 4 stereo outputs and gain control for each output. It is casc...
gpl-2.0
XuQiufeng/kernel_msm
net/atm/signaling.c
9035
7025
/* net/atm/signaling.c - ATM signaling */ /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */ #define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__ #include <linux/errno.h> /* error codes */ #include <linux/kernel.h> /* printk */ #include <linux/skbuff.h> #include <linux/wait.h> #include <linux/sched.h> /...
gpl-2.0
TripNRaVeR/caf_kernel_msm_htc_m7
tools/perf/util/ctype.c
9291
1465
/* * Sane locale-independent, ASCII ctype. * * No surprises, and works with signed and unsigned chars. */ #include "util.h" enum { S = GIT_SPACE, A = GIT_ALPHA, D = GIT_DIGIT, G = GIT_GLOB_SPECIAL, /* *, ?, [, \\ */ R = GIT_REGEX_SPECIAL, /* $, (, ), +, ., ^, {, | * */ P = GIT_PRINT_EXTRA, /* printable - alp...
gpl-2.0
arter97/odroid
arch/mips/pmcs-msp71xx/msp_elb.c
14155
1857
/* * Sets up the proper Chip Select configuration registers. It is assumed that * PMON sets up the ADDR and MASK registers properly. * * Copyright 2005-2006 PMC-Sierra, Inc. * Author: Marc St-Jean, Marc_St-Jean@pmc-sierra.com * * This program is free software; you can redistribute it and/or modify it * unde...
gpl-2.0
extremegf/debian
drivers/staging/rtl8188eu/core/rtw_sta_mgt.c
76
17168
/****************************************************************************** * * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the ...
gpl-2.0
BrateloSlava/SaveEnergy-2
arch/arm/mach-msm/clock-local.c
332
19493
/* Copyright (c) 2009-2012, Code Aurora Forum. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the ho...
gpl-2.0
umeshkrishnan/pb-bugbase-u-boot
board/freescale/mpc8548cds/ddr.c
332
1766
/* * Copyright 2008 Freescale Semiconductor, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * Version 2 as published by the Free Software Foundation. */ #include <common.h> #include <i2c.h> #include <asm/fsl_ddr_sdram.h> #incl...
gpl-2.0
Cl3Kener/HERC-KERNELS
fs/bio.c
332
40708
/* * Copyright (C) 2001 Jens Axboe <axboe@kernel.dk> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but...
gpl-2.0
fortunaFiWn/android_kernel_samsung_fortunave3g
arch/arm/mach-mv78xx0/common.c
1100
10934
/* * arch/arm/mach-mv78xx0/common.c * * Core functions for Marvell MV78xx0 SoCs * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #include <linux/kernel.h> #include <linux...
gpl-2.0
atila1974/AK-OnePlusOne-CAF
arch/arm/mach-msm/acpuclock-9625.c
1612
4762
/* * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in ...
gpl-2.0
Barracuda09/linux
net/mac80211/mesh_ps.c
1612
16534
/* * Copyright 2012-2013, Marco Porsch <marco.porsch@s2005.tu-chemnitz.de> * Copyright 2012-2013, cozybit Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include "me...
gpl-2.0
chuangWu/linux
drivers/video/fbdev/skeletonfb.c
1868
36774
/* * linux/drivers/video/skeletonfb.c -- Skeleton for a frame buffer device * * Modified to new api Jan 2001 by James Simmons (jsimmons@transvirtual.com) * * Created 28 Dec 1997 by Geert Uytterhoeven * * * I have started rewriting this driver as a example of the upcoming new API * The primary goal is to re...
gpl-2.0
BRNmod/android_kernel_asus_grouper
drivers/isdn/gigaset/bas-gigaset.c
2124
72339
/* * USB driver for Gigaset 307x base via direct USB connection. * * Copyright (c) 2001 by Hansjoerg Lipp <hjlipp@web.de>, * Tilman Schmidt <tilman@imap.cc>, * Stefan Eilers. * * ===================================================================== * This program is f...
gpl-2.0
andi34/android_kernel_samsung_espresso
drivers/net/vxge/vxge-main.c
2380
132019
/****************************************************************************** * This software may be used and distributed according to the terms of * the GNU General Public License (GPL), incorporated herein by reference. * Drivers based on or derived from this code fall under the GPL and must * retain the authorship...
gpl-2.0
TEAM-Gummy/Gummy_kernel_grouper
drivers/net/enc28j60.c
2636
45529
/* * Microchip ENC28J60 ethernet driver (MAC + PHY) * * Copyright (C) 2007 Eurek srl * Author: Claudio Lanconelli <lanconelli.claudio@eptar.com> * based on enc28j60.c written by David Anders for 2.4 kernel version * * This program is free software; you can redistribute it and/or modify * it under the terms of t...
gpl-2.0
joni2012/joni
drivers/hwmon/adt7462.c
4940
60232
/* * A hwmon driver for the Analog Devices ADT7462 * Copyright (C) 2008 IBM * * Author: Darrick J. Wong <djwong@us.ibm.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either versi...
gpl-2.0
leonardoafa/android_kernel_motorola_msm8974
drivers/video/w100fb.c
4940
48927
/* * linux/drivers/video/w100fb.c * * Frame Buffer Device for ATI Imageon w100 (Wallaby) * * Copyright (C) 2002, ATI Corp. * Copyright (C) 2004-2006 Richard Purdie * Copyright (c) 2005 Ian Molton * Copyright (c) 2006 Alberto Mardegan * * Rewritten for 2.6 by Richard Purdie <rpurdie@rpsys.net> * * Generic pl...
gpl-2.0
iJo09/Hybridmax_Kernel_I9505_Lollipop
drivers/video/amifb.c
4940
102046
/* * linux/drivers/video/amifb.c -- Amiga builtin chipset frame buffer device * * Copyright (C) 1995-2003 Geert Uytterhoeven * * with work by Roman Zippel * * * This file is based on the Atari frame buffer device (atafb.c): * * Copyright (C) 1994 Martin Schaller * Roman H...
gpl-2.0
Beeko/android_kernel_samsung_d2
drivers/xen/xenbus/xenbus_dev_backend.c
4940
1858
#include <linux/slab.h> #include <linux/types.h> #include <linux/mm.h> #include <linux/fs.h> #include <linux/miscdevice.h> #include <linux/module.h> #include <linux/capability.h> #include <xen/xen.h> #include <xen/page.h> #include <xen/xenbus_dev.h> #include "xenbus_comms.h" MODULE_LICENSE("GPL"); static int xenbus...
gpl-2.0
TheEdge-/Leaping_Lemur_kernel
fs/nfsd/stats.c
7756
2777
/* * procfs-based user access to knfsd statistics * * /proc/net/rpc/nfsd * * Format: * rc <hits> <misses> <nocache> * Statistsics for the reply cache * fh <stale> <total-lookups> <anonlookups> <dir-not-in-dcache> <nondir-not-in-dcache> * statistics for filehandle lookup * io <bytes-read> <bytes-written> ...
gpl-2.0
cjp256/ubuntu-linux
arch/mips/net/bpf_jit.c
77
36056
/* * Just-In-Time compiler for BPF filters on MIPS * * Copyright (c) 2014 Imagination Technologies Ltd. * Author: Markos Chandras <markos.chandras@imgtec.com> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Fre...
gpl-2.0
ZUK2/android_kernel_zuk_z2_plus
drivers/video/fbdev/bw2.c
845
9303
/* bw2.c: BWTWO frame buffer driver * * Copyright (C) 2003, 2006 David S. Miller (davem@davemloft.net) * Copyright (C) 1996,1998 Jakub Jelinek (jj@ultra.linux.cz) * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx) * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be) * * Driver layout based loosely on tg...
gpl-2.0
v1ron/linux-mainline
fs/ceph/debugfs.c
845
7749
#include <linux/ceph/ceph_debug.h> #include <linux/device.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/ctype.h> #include <linux/debugfs.h> #include <linux/seq_file.h> #include <linux/ceph/libceph.h> #include <linux/ceph/mon_client.h> #include <linux/ceph/auth.h> #include <linux/ceph/debugfs.h>...
gpl-2.0
championswimmer/kernel_sony_msm8960t
arch/arm/mach-msm/qdsp6/auxpcm_lb_in.c
1101
4923
/* arch/arm/mach-msm/qdsp6/auxpcm_lb_in.c * * Copyright (C) 2009 Google, Inc. * Copyright (C) 2009 HTC Corporation * Copyright (c) 2010, The Linux Foundation. All rights reserved. * * This software is licensed under the terms of the GNU General Public * License version 2, as published by the Free Software Founda...
gpl-2.0
Metallice/GTab2-Kernel-TW
drivers/staging/usbip/userspace/src/utils.c
2381
4133
/* * * Copyright (C) 2005-2007 Takahiro Hirofuchi */ #include "utils.h" int read_integer(char *path) { char buff[100]; int fd; int ret = 0; bzero(buff, sizeof(buff)); fd = open(path, O_RDONLY); if (fd < 0) return -1; ret = read(fd, buff, sizeof(buff)); if (ret < 0) { close(fd); return -1; } ssc...
gpl-2.0
sjp333/android_kernel_htc_leo
fs/dlm/user.c
2381
24873
/* * Copyright (C) 2006-2010 Red Hat, Inc. All rights reserved. * * This copyrighted material is made available to anyone wishing to use, * modify, copy, or redistribute it subject to the terms and conditions * of the GNU General Public License v.2. */ #include <linux/miscdevice.h> #include <linux/init.h> #incl...
gpl-2.0
Andrewt12/android_kernel_samsung_chagalllte
drivers/char/dcc_tty.c
3661
8110
/* drivers/char/dcc_tty.c * * Copyright (C) 2007 Google, Inc. * * This software is licensed under the terms of the GNU General Public * License version 2, as published by the Free Software Foundation, and * may be copied, distributed, and modified under those terms. * * This program is distributed in the hope t...
gpl-2.0
arter97/android_kernel_google_msm
drivers/infiniband/hw/ehca/ehca_mrmw.c
4941
75947
/* * IBM eServer eHCA Infiniband device driver for Linux on POWER * * MR/MW functions * * Authors: Dietmar Decker <ddecker@de.ibm.com> * Christoph Raisch <raisch@de.ibm.com> * Hoang-Nam Nguyen <hnguyen@de.ibm.com> * * Copyright (c) 2005 IBM Corporation * * All rights reserved. * * ...
gpl-2.0
tiny4579/tinykernel-flo
drivers/staging/wlan-ng/p80211netdev.c
4941
30872
/* src/p80211/p80211knetdev.c * * Linux Kernel net device interface * * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved. * -------------------------------------------------------------------- * * linux-wlan * * The contents of this file are subject to the Mozilla Public * License Version 1.1 (th...
gpl-2.0
omnirom/android_kernel_samsung_lt03lte
arch/x86/um/signal.c
4941
15533
/* * Copyright (C) 2003 PathScale, Inc. * Copyright (C) 2003 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Licensed under the GPL */ #include <linux/personality.h> #include <linux/ptrace.h> #include <linux/kernel.h> #include <asm/unistd.h> #include <asm/uaccess.h> #include <asm/ucontext.h> #include "frame_...
gpl-2.0
omega-roms/I9505G_Stock_Kernel_JB_4.3
drivers/staging/bcm/HandleControlPacket.c
4941
6964
/** * @file HandleControlPacket.c * This file contains the routines to deal with * sending and receiving of control packets. */ #include "headers.h" /** * When a control packet is received, analyze the * "status" and call appropriate response function. * Enqueue the control packet for Application. * @return No...
gpl-2.0
Pepejson/MammothKernel_S6310
drivers/media/video/cpia2/cpia2_v4l.c
5453
40773
/**************************************************************************** * * Filename: cpia2_v4l.c * * Copyright 2001, STMicrolectronics, Inc. * Contact: steve.miller@st.com * Copyright 2001,2005, Scott J. Bertin <scottbertin@yahoo.com> * * Description: * This is a USB driver for CPia2 based...
gpl-2.0
johnweber/linux-imx
drivers/media/video/cpia2/cpia2_v4l.c
5453
40773
/**************************************************************************** * * Filename: cpia2_v4l.c * * Copyright 2001, STMicrolectronics, Inc. * Contact: steve.miller@st.com * Copyright 2001,2005, Scott J. Bertin <scottbertin@yahoo.com> * * Description: * This is a USB driver for CPia2 based...
gpl-2.0
TeamExodus/kernel_motorola_msm8960dt-common
drivers/video/amba-clcd.c
7245
15011
/* * linux/drivers/video/amba-clcd.c * * Copyright (C) 2001 ARM Limited, by David A Rusling * Updated to 2.5, Deep Blue Solutions Ltd. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive * for more details. * * ...
gpl-2.0
amardeep434/nkernel
drivers/video/amba-clcd.c
7245
15011
/* * linux/drivers/video/amba-clcd.c * * Copyright (C) 2001 ARM Limited, by David A Rusling * Updated to 2.5, Deep Blue Solutions Ltd. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive * for more details. * * ...
gpl-2.0
qwerty97/rk3066
mm/net/sctp/ulpqueue.c
8013
28422
/* SCTP kernel implementation * (C) Copyright IBM Corp. 2001, 2004 * Copyright (c) 1999-2000 Cisco, Inc. * Copyright (c) 1999-2001 Motorola, Inc. * Copyright (c) 2001 Intel Corp. * Copyright (c) 2001 Nokia, Inc. * Copyright (c) 2001 La Monte H.P. Yarroll * * This abstraction carries sctp events to the ULP (sock...
gpl-2.0
vikrant82/android_kernel_samsung_mondrianwifi
drivers/staging/comedi/drivers/addi-data/hwdrv_apci16xx.c
8013
29161
/** @verbatim Copyright (C) 2004,2005 ADDI-DATA GmbH for the source code of this module. ADDI-DATA GmbH Dieselstrasse 3 D-77833 Ottersweier Tel: +19(0)7223/9493-0 Fax: +49(0)7223/9493-92 http://www.addi-data.com info@addi-data.com This program is free software; you can redistribute it and/or modify it under ...
gpl-2.0
CyanogenMod/android_kernel_sony_msm8x27
drivers/usb/core/buffer.c
9037
3310
/* * DMA memory management for framework level HCD code (hc_driver) * * This implementation plugs in through generic "usb_bus" level methods, * and should work with all USB controllers, regardles of bus type. */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/slab.h> #include <linux/device.h> ...
gpl-2.0
sour12/iamroot
fs/squashfs/xz_wrapper.c
10061
4211
/* * Squashfs - a compressed read only filesystem for Linux * * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 * Phillip Lougher <phillip@squashfs.org.uk> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publ...
gpl-2.0
SiennaStellar/linux-3.10.20_kelleni
fs/squashfs/xz_wrapper.c
10061
4211
/* * Squashfs - a compressed read only filesystem for Linux * * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 * Phillip Lougher <phillip@squashfs.org.uk> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as publ...
gpl-2.0
davidmueller13/Galaxy_Note_3
fs/fscache/fsdef.c
12109
4324
/* Filesystem index definition * * Copyright (C) 2004-2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Founda...
gpl-2.0
deedwar/pure
lib/bch.c
12877
36404
/* * Generic binary BCH encoding/decoding library * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but WITHO...
gpl-2.0
arpitjain9819/FIRE-AND-FLAMES
sound/isa/galaxy/azt2316.c
13133
3660
/* * Aztech AZT2316 Driver * Copyright (C) 2007,2010 Rene Herman * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later versio...
gpl-2.0
Pesach85/lge-kernel-omap4
drivers/net/skfp/queue.c
13133
4083
/****************************************************************************** * * (C)Copyright 1998,1999 SysKonnect, * a business unit of Schneider & Koch & Co. Datensysteme GmbH. * * See the file "skfddi.c" for further information. * * This program is free software; you can redistribute it and/or modify * it...
gpl-2.0
AndroPlus-org/sony_sources-H2_2014
drivers/video/atafb_iplan2p2.c
14925
6818
/* * linux/drivers/video/iplan2p2.c -- Low level frame buffer operations for * interleaved bitplanes à la Atari (2 * planes, 2 bytes interleave) * * Created 5 Apr 1997 by Geert Uytterhoeven * * This file is subject to the terms and conditions of the GNU General Public * License. See the fi...
gpl-2.0
d8ahazard/AngryDragon-Source
arch/sh/kernel/cpu/sh4a/clock-shx3.c
846
3201
/* * arch/sh/kernel/cpu/sh4/clock-shx3.c * * SH-X3 support for the clock framework * * Copyright (C) 2006-2007 Renesas Technology Corp. * Copyright (C) 2006-2007 Renesas Solutions Corp. * Copyright (C) 2006-2007 Paul Mundt * * This file is subject to the terms and conditions of the GNU General Public * ...
gpl-2.0
Perferom/android_kernel_htc_msm7x27
drivers/s390/block/dasd_3990_erp.c
846
70194
/* * File...........: linux/drivers/s390/block/dasd_3990_erp.c * Author(s)......: Horst Hummel <Horst.Hummel@de.ibm.com> * Holger Smolinski <Holger.Smolinski@de.ibm.com> * Bugreports.to..: <Linux390@de.ibm.com> * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 2000, 2001 * */ #define KMSG_COMPON...
gpl-2.0
Klozz/kernel_msm_osprey-stock
drivers/staging/iio/adc/mxs-lradc.c
1870
28356
/* * Freescale i.MX28 LRADC driver * * Copyright (c) 2012 DENX Software Engineering, GmbH. * Marek Vasut <marex@denx.de> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version ...
gpl-2.0
jokersax/le970-kernel
drivers/net/can/pch_can.c
2126
33480
/* * Copyright (C) 1999 - 2010 Intel Corporation. * Copyright (C) 2010 OKI SEMICONDUCTOR CO., LTD. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This pr...
gpl-2.0
derekcentrico/m6.kernel.3.x
drivers/media/video/ivtv/ivtv-ioctl.c
2382
53643
/* ioctl system call Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com> Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Softw...
gpl-2.0
okrt/note8-jb-kernel
fs/dlm/lockspace.c
2382
19009
/****************************************************************************** ******************************************************************************* ** ** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. ** Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. ** ** This copyrig...
gpl-2.0
javelinanddart/kernel_lge_g3
drivers/power/msm_charger.c
3406
35802
/* Copyright (c) 2010-2012, The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the...
gpl-2.0
croniccorey/cronmod-kernel
arch/m32r/kernel/module.c
3918
7229
/* Kernel module help for M32R. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distribut...
gpl-2.0
AndroPlus-org/android_kernel_sony_msm8994
drivers/scsi/mvme147.c
4430
4040
#include <linux/types.h> #include <linux/mm.h> #include <linux/blkdev.h> #include <linux/interrupt.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/mvme147hw.h> #include <asm/irq.h> #include "scsi.h" #include <scsi/scsi_host.h> #include "wd33c93.h" #include "mvme147.h" #include <linux/stat.h> static...
gpl-2.0
gianmarcorev/rpi_linux
drivers/scsi/mvme147.c
4430
4040
#include <linux/types.h> #include <linux/mm.h> #include <linux/blkdev.h> #include <linux/interrupt.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/mvme147hw.h> #include <asm/irq.h> #include "scsi.h" #include <scsi/scsi_host.h> #include "wd33c93.h" #include "mvme147.h" #include <linux/stat.h> static...
gpl-2.0
dsb9938/DNA_JB_KERNEL_2
arch/m68k/atari/config.c
4686
18483
/* * linux/arch/m68k/atari/config.c * * Copyright (C) 1994 Bjoern Brauel * * 5/2/94 Roman Hodek: * Added setting of time_adj to get a better clock. * * 5/14/94 Roman Hodek: * gettod() for TT * * 5/15/94 Roman Hodek: * hard_reset_now() for Atari (and others?) * * 94/12/30 Andreas Schwab: * ...
gpl-2.0
TheStrix/android_kernel_xiaomi_armani_OLD
drivers/hwmon/mcp3021.c
4942
4005
/* * mcp3021.c - driver for the Microchip MCP3021 chip * * Copyright (C) 2008-2009, 2012 Freescale Semiconductor, Inc. * Author: Mingkai Hu <Mingkai.hu@freescale.com> * * This driver export the value of analog input voltage to sysfs, the * voltage unit is mV. Through the sysfs interface, lm-sensors tool * can a...
gpl-2.0
TeamTwisted/hells-Core-N5
drivers/i2c/busses/i2c-via.c
4942
4478
/* i2c Support for Via Technologies 82C586B South Bridge Copyright (c) 1998, 1999 Kyösti Mälkki <kmalkki@cc.hut.fi> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version...
gpl-2.0
bryan2894/D851_Kernel
drivers/gpu/drm/radeon/radeon_encoders.c
4942
11912
/* * Copyright 2007-8 Advanced Micro Devices, Inc. * Copyright 2008 Red Hat Inc. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * t...
gpl-2.0
DJSteve/g800h_custom_kernel
drivers/hwmon/ultra45_env.c
4942
8581
/* * ultra45_env.c: Driver for Ultra45 PIC16F747 environmental monitor. * * Copyright (C) 2008 David S. Miller <davem@davemloft.net> */ #include <linux/kernel.h> #include <linux/types.h> #include <linux/slab.h> #include <linux/module.h> #include <linux/of_device.h> #include <linux/io.h> #include <linux/hwmon.h> #i...
gpl-2.0
hashem78/G-Kernel
net/nfc/af_nfc.c
7502
2491
/* * Copyright (C) 2011 Instituto Nokia de Tecnologia * * Authors: * Aloisio Almeida Jr <aloisio.almeida@openbossa.org> * Lauro Ramos Venancio <lauro.venancio@openbossa.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as p...
gpl-2.0
jamison904/T999_TW_kernel
drivers/mtd/maps/esb2rom.c
8014
13050
/* * esb2rom.c * * Normal mappings of flash chips in physical memory * through the Intel ESB2 Southbridge. * * This was derived from ichxrom.c in May 2006 by * Lew Glendenning <lglendenning@lnxi.com> * * Eric Biederman, of course, was a major help in this effort. */ #include <linux/module.h> #include <linux/...
gpl-2.0
ohporter/linux-am33x
drivers/scsi/fnic/fnic_fcs.c
8270
19871
/* * Copyright 2008 Cisco Systems, Inc. All rights reserved. * Copyright 2007 Nuova Systems, Inc. All rights reserved. * * This program is free software; you may redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the ...
gpl-2.0
syhost/linux-android-endeavoru-3.6
drivers/isdn/act2000/act2000_isa.c
9294
10089
/* $Id: act2000_isa.c,v 1.11.6.3 2001/09/23 22:24:32 kai Exp $ * * ISDN lowlevel-module for the IBM ISDN-S0 Active 2000 (ISA-Version). * * Author Fritz Elfert * Copyright by Fritz Elfert <fritz@isdn4linux.de> * * This software may be used and distributed according to the terms * of the GNU General...
gpl-2.0
pazos/android_kernel_samsung_goyawifi
arch/score/mm/tlb-score.c
9806
5488
/* * arch/score/mm/tlb-score.c * * Score Processor version. * * Copyright (C) 2009 Sunplus Core Technology Co., Ltd. * Lennox Wu <lennox.wu@sunplusct.com> * Chen Liqin <liqin.chen@sunplusct.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General ...
gpl-2.0
silence-star/android_kernel_nubia_NX503A
arch/score/mm/tlb-score.c
9806
5488
/* * arch/score/mm/tlb-score.c * * Score Processor version. * * Copyright (C) 2009 Sunplus Core Technology Co., Ltd. * Lennox Wu <lennox.wu@sunplusct.com> * Chen Liqin <liqin.chen@sunplusct.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General ...
gpl-2.0
mapleshadow/M7-4.3-Kernel
drivers/s390/char/sclp_rw.c
9806
12923
/* * driver: reading from and writing to system console on S/390 via SCLP * * Copyright IBM Corp. 1999, 2009 * * Author(s): Martin Peschke <mpeschke@de.ibm.com> * Martin Schwidefsky <schwidefsky@de.ibm.com> */ #include <linux/kmod.h> #include <linux/types.h> #include <linux/err.h> #include <linux/string.h...
gpl-2.0
Jcfunk/zva
drivers/media/video/cx231xx/cx231xx-pcb-cfg.c
10062
20991
/* cx231xx-pcb-config.c - driver for Conexant Cx23100/101/102 USB video capture devices Copyright (C) 2008 <srinivasa.deevi at conexant dot com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software ...
gpl-2.0
wujiku/superstar-kernel-shooter-2.3.4gb
drivers/infiniband/hw/mlx4/doorbell.c
12878
2900
/* * Copyright (c) 2007 Cisco Systems, Inc. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this source...
gpl-2.0
TeamJB/kernel_samsung_smdk4412
arch/parisc/kernel/pa7300lc.c
13902
1099
/* * linux/arch/parisc/kernel/pa7300lc.c * - PA7300LC-specific functions * * Copyright (C) 2000 Philipp Rumpf */ #include <linux/sched.h> #include <linux/smp.h> #include <linux/kernel.h> #include <asm/io.h> #include <asm/ptrace.h> #include <asm/machdep.h> /* CPU register indices */ #define MIOC_STATUS 0xf04...
gpl-2.0
shutt1e/lge_kernel_msm7x30
drivers/video/atafb_mfb.c
14926
2554
/* * linux/drivers/video/mfb.c -- Low level frame buffer operations for * monochrome * * Created 5 Apr 1997 by Geert Uytterhoeven * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive for * more details. */ ...
gpl-2.0
rperier/linux
net/tipc/name_distr.c
79
12250
/* * net/tipc/name_distr.c: TIPC name distribution code * * Copyright (c) 2000-2006, 2014-2019, Ericsson AB * Copyright (c) 2005, 2010-2011, Wind River Systems * Copyright (c) 2020-2021, Red Hat Inc * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, ar...
gpl-2.0
Perferom/android_kernel_huawei_msm7x25
drivers/s390/block/dasd_eckd.c
335
94869
/* * File...........: linux/drivers/s390/block/dasd_eckd.c * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com> * Horst Hummel <Horst.Hummel@de.ibm.com> * Carsten Otte <Cotte@de.ibm.com> * Martin Schwidefsky <schwidefsky@de.ibm.com> * Bugreports.to..: <Linux390@de.ibm.com> * Copyright...
gpl-2.0
ktraghavendra/linux
drivers/media/usb/dvb-usb/vp702x-fe.c
591
9012
/* DVB frontend part of the Linux driver for the TwinhanDTV StarBox USB2.0 * DVB-S receiver. * * Copyright (C) 2005 Ralph Metzler <rjkm@metzlerbros.de> * Metzler Brothers Systementwicklung GbR * * Copyright (C) 2005 Patrick Boettcher <patrick.boettcher@desy.de> * * Thanks to Twinhan who kindl...
gpl-2.0
sria91/linux
drivers/media/dvb-frontends/dib9000.c
591
72660
/* * Linux-DVB Driver for DiBcom's DiB9000 and demodulator-family. * * Copyright (C) 2005-10 DiBcom (http://www.dibcom.fr/) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation, version 2. *...
gpl-2.0
cminyard/linux-fumount
drivers/leds/leds-lp55xx-common.c
847
13917
/* * LP5521/LP5523/LP55231/LP5562 Common Driver * * Copyright 2012 Texas Instruments * * Author: Milo(Woogyom) Kim <milo.kim@ti.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foun...
gpl-2.0
AntaresOne/AntaresCore-Kernel-G4
drivers/scsi/libiscsi.c
847
93428
/* * iSCSI lib functions * * Copyright (C) 2006 Red Hat, Inc. All rights reserved. * Copyright (C) 2004 - 2006 Mike Christie * Copyright (C) 2004 - 2005 Dmitry Yusupov * Copyright (C) 2004 - 2005 Alex Aizman * maintained by open-iscsi@googlegroups.com * * This program is free software; you can redistribute it...
gpl-2.0
dhkim1027/iamroot-linux-arm10c
security/selinux/netnode.c
1103
8397
/* * Network node table * * SELinux must keep a mapping of network nodes to labels/SIDs. This * mapping is maintained as part of the normal policy but a fast cache is * needed to reduce the lookup overhead since most of these queries happen on * a per-packet basis. * * Author: Paul Moore <paul@paul-moore.com> ...
gpl-2.0
tamirda/G900F_PhoeniX_Kernel_Lollipop
drivers/acpi/blacklist.c
2127
9505
/* * blacklist.c * * Check to see if the given machine has a known bad ACPI BIOS * or if the BIOS is too old. * Check given machine against acpi_osi_dmi_table[]. * * Copyright (C) 2004 Len Brown <len.brown@intel.com> * Copyright (C) 2002 Andy Grover <andrew.grover@intel.com> * * ~~~~~~~~~~~~~~~~~~~~~~~~...
gpl-2.0
TheWhisp/android_kernel_samsung_kyle
drivers/w1/w1_netlink.c
2383
9987
/* * w1_netlink.c * * Copyright (c) 2003 Evgeniy Polyakov <johnpol@2ka.mipt.ru> * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option...
gpl-2.0
Rath1on/kor-d2vzw
arch/x86/mm/highmem_32.c
2383
3410
#include <linux/highmem.h> #include <linux/module.h> #include <linux/swap.h> /* for totalram_pages */ void *kmap(struct page *page) { might_sleep(); if (!PageHighMem(page)) return page_address(page); return kmap_high(page); } EXPORT_SYMBOL(kmap); void kunmap(struct page *page) { if (in_interrupt()) BUG(); if...
gpl-2.0
DirtyUnicorns/android_kernel_nvidia_shieldtablet
arch/arm/mach-imx/mach-mx35_3ds.c
2639
15304
/* * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved. * Copyright (C) 2009 Marc Kleine-Budde, Pengutronix * * Author: Fabio Estevam <fabio.estevam@freescale.com> * * Copyright (C) 2011 Meprolight, Ltd. * Alex Gershgorin <alexg@meprolight.com> * * Modified from i.MX31 3-Stack Development System...
gpl-2.0
arm000/linux-2.6
drivers/tty/serial/bfin_5xx.c
2639
41193
/* * Blackfin On-Chip Serial Driver * * Copyright 2006-2010 Analog Devices Inc. * * Enter bugs at http://blackfin.uclinux.org/ * * Licensed under the GPL-2 or later. */ #if defined(CONFIG_SERIAL_BFIN_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) #define SUPPORT_SYSRQ #endif #define DRIVER_NAME "bfin-uart" #define p...
gpl-2.0
kishpatel1998/HeatWave-CP8676_I02
arch/arm/mach-imx/mach-mx1ads.c
2639
3349
/* * arch/arm/mach-imx/mach-mx1ads.c * * Initially based on: * linux-2.6.7-imx/arch/arm/mach-imx/scb9328.c * Copyright (c) 2004 Sascha Hauer <sascha@saschahauer.de> * * 2004 (c) MontaVista Software, Inc. * * This file is licensed under the terms of the GNU General Public * License version 2. This program is l...
gpl-2.0
InsomniaAOSP/platform_kernel_htc_m7
fs/reiserfs/stree.c
3407
65806
/* * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README */ /* * Written by Anatoly P. Pinchuk pap@namesys.botik.ru * Programm System Institute * Pereslavl-Zalessky Russia */ /* * This file contains functions dealing with S+tree * * B_IS_IN_TREE * copy_item_head * comp_short_keys * c...
gpl-2.0
dcsommer/linux-kernel-cwnd-issues
drivers/net/ethernet/xilinx/xilinx_axienet_main.c
3919
52063
/* * Xilinx Axi Ethernet device driver * * Copyright (c) 2008 Nissin Systems Co., Ltd., Yoshio Kashiwagi * Copyright (c) 2005-2008 DLA Systems, David H. Lynch Jr. <dhlii@dlasys.net> * Copyright (c) 2008-2009 Secret Lab Technologies Ltd. * Copyright (c) 2010 - 2011 Michal Simek <monstr@monstr.eu> * Copyright (c...
gpl-2.0
zaclimon/android_kernel_samsung_palladio
arch/m32r/kernel/traps.c
3919
8233
/* * linux/arch/m32r/kernel/traps.c * * Copyright (C) 2001, 2002 Hirokazu Takata, Hiroyuki Kondo, * Hitoshi Yamamoto */ /* * 'traps.c' handles hardware traps and faults after we have saved some * state in 'entry.S'. */ #include <linux/init.h> #include <linux/kernel.h> #include <li...
gpl-2.0
GalaxyTab4/android_kernel_samsung_degas
drivers/infiniband/hw/mthca/mthca_reset.c
4431
7680
/* * Copyright (c) 2004 Topspin Communications. All rights reserved. * * This software is available to you under a choice of one of two * licenses. You may choose to be licensed under the terms of the GNU * General Public License (GPL) Version 2, available from the file * COPYING in the main directory of this s...
gpl-2.0
houstar/linux-3.8.8
arch/mips/cavium-octeon/dma-octeon.c
4687
10071
/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2000 Ani Joshi <ajoshi@unixbox.com> * Copyright (C) 2000, 2001 Ralf Baechle <ralf@gnu.org> * Copyright (C) 2005 Ilya A. ...
gpl-2.0