repo_name
string
path
string
copies
string
size
string
content
string
license
string
aznrice/KinGk_msm8960
arch/h8300/kernel/module.c
2578
2835
#include <linux/moduleloader.h> #include <linux/elf.h> #include <linux/vmalloc.h> #include <linux/fs.h> #include <linux/string.h> #include <linux/kernel.h> #if 0 #define DEBUGP printk #else #define DEBUGP(fmt...) #endif void *module_alloc(unsigned long size) { if (size == 0) return NULL; return vmalloc(size); } ...
gpl-2.0
yangjoo/kernel_samsung_smdk4412
arch/arm/mach-omap2/clock3xxx.c
3090
2506
/* * OMAP3-specific clock framework functions * * Copyright (C) 2007-2008 Texas Instruments, Inc. * Copyright (C) 2007-2010 Nokia Corporation * * Paul Walmsley * Jouni Högander * * Parts of this code are based on code written by * Richard Woodruff, Tony Lindgren, Tuukka Tikkanen, Karthik Dasu * * This progr...
gpl-2.0
ghosteyezz/linux-study
drivers/video/fbdev/via/lcd.c
4626
31735
/* * Copyright 1998-2008 VIA Technologies, Inc. All Rights Reserved. * Copyright 2001-2008 S3 Graphics, Inc. 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 as published by the Free Software Foundation; * either ...
gpl-2.0
SudaMod-devices/boeffla-kernel-cm-bacon
arch/arm/mach-vt8500/devices.c
7954
5999
/* linux/arch/arm/mach-vt8500/devices.c * * Copyright (C) 2010 Alexey Charkov <alchark@gmail.com> * * 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 ...
gpl-2.0
MoKee/android_kernel_oppo_find7a
arch/mips/sibyte/swarm/rtc_xicor1241.c
9490
5504
/* * Copyright (C) 2000, 2001 Broadcom Corporation * * Copyright (C) 2002 MontaVista Software Inc. * Author: jsun@mvista.com or jsun@junsun.net * * 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
AdiV1899/blitz_kernel_msm8916
drivers/input/mouse/inport.c
14610
5446
/* * Copyright (c) 1999-2001 Vojtech Pavlik * * Based on the work of: * Teemu Rantanen Derrick Cole * Peter Cervasio Christoph Niemann * Philip Blundell Russell King * Bob Harris */ /* * Inport (ATI XL and Microsoft) busmouse driver for Linux */ /* * This program is free software; you can redistribute...
gpl-2.0
yyu168/linux
drivers/usb/core/urb.c
19
32862
// SPDX-License-Identifier: GPL-2.0 /* * Released under the GPLv2 only. */ #include <linux/module.h> #include <linux/string.h> #include <linux/bitops.h> #include <linux/slab.h> #include <linux/log2.h> #include <linux/usb.h> #include <linux/wait.h> #include <linux/usb/hcd.h> #include <linux/scatterlist.h> #define to...
gpl-2.0
MichaelQQ/Wireshark-PE
epan/frame_data.c
19
11604
/* frame_data.c * Routines for packet disassembly * * Wireshark - Network traffic analyzer * By Gerald Combs <gerald@wireshark.org> * Copyright 1998 Gerald Combs * * * 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 ...
gpl-2.0
NicolasDichtel/linux
security/integrity/ima/ima_crypto.c
19
16094
/* * Copyright (C) 2005,2006,2007,2008 IBM Corporation * * Authors: * Mimi Zohar <zohar@us.ibm.com> * Kylene Hall <kjhall@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, v...
gpl-2.0
Haderach/linux-mirror
drivers/gpu/drm/vc4/vc4_hvs.c
19
4160
/* * Copyright (C) 2015 Broadcom * * 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. */ /** * DOC: VC4 HVS module. * * The HVS is the piece of hardware that does translation, s...
gpl-2.0
pioupus/stm32f4disco_FreeRTOS
lib/FreeRTOSV8.1.2/FreeRTOS/Demo/Common/ethernet/lwip-1.4.0/ports/MicroBlaze-Ethernet-Lite/SP605_PHY.c
19
5027
/* * Code provided by Xilinx. */ /* BSP includes. */ #include "xemaclite.h" /* lwIP includes. */ #include "lwip/opt.h" /* Advertisement control register. */ #define ADVERTISE_10HALF 0x0020 /* Try for 10mbps half-duplex */ #define ADVERTISE_10FULL 0x0040 /* Try for 10mbps full-duplex */ #define ...
gpl-2.0
hzq1001/or1k-src
libgui/src/tclsizebox.c
19
6421
/* tclsizebox.c -- Tcl code to create a sizebox on Windows. Copyright (C) 1997, 1998 Cygnus Solutions. Written by Ian Lance Taylor <ian@cygnus.com>. */ #ifdef _WIN32 #include <windows.h> #include <tcl.h> #include <tk.h> #include "guitcl.h" /* We need to make some Tk internal calls. The only alternative is ...
gpl-2.0
patrykk/linux-udoo
drivers/staging/lustre/lustre/obdclass/statfs_pack.c
275
1962
/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 only, * as published by the Free Software Foundation. * * This program is distributed...
gpl-2.0
belalang-tempur/android_kernel_xiaomi_ferrari
drivers/media/platform/msm/camera_v2/isp/msm_isp44.c
275
57123
/* Copyright (c) 2013-2014, 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
jtpoo3/kernel_asus_flo
crypto/shash.c
1043
17253
/* * Synchronous Cryptographic Hash operations. * * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au> * * 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 L...
gpl-2.0
lategoodbye/linux-mxs-power
tools/testing/selftests/powerpc/pmu/ebb/no_handler_test.c
1299
1129
/* * Copyright 2014, Michael Ellerman, IBM Corp. * Licensed under GPLv2. */ #include <stdio.h> #include <stdlib.h> #include <setjmp.h> #include <signal.h> #include "ebb.h" /* Test that things work sanely if we have no handler */ static int no_handler_test(void) { struct event event; u64 val; int i; event_i...
gpl-2.0
icalik/linux
tools/testing/selftests/powerpc/pmu/ebb/cpu_event_pinned_vs_ebb_test.c
1299
1917
/* * Copyright 2014, Michael Ellerman, IBM Corp. * Licensed under GPLv2. */ #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <sys/types.h> #include <sys/wait.h> #include <unistd.h> #include "ebb.h" /* * Tests a pinned cpu event vs an EBB - in that order. The pinned cpu ev...
gpl-2.0
burstlam/kernel-35
arch/arm/mach-mmp/irq-pxa168.c
1555
1246
/* * linux/arch/arm/mach-mmp/irq.c * * Generic IRQ handling, GPIO IRQ demultiplexing, etc. * * Author: Bin Yang <bin.yang@marvell.com> * Created: Sep 30, 2008 * Copyright: Marvell International Ltd. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU...
gpl-2.0
nnvt/android_kernel_oneplus_msm8974
drivers/video/udlfb.c
1555
52427
/* * udlfb.c -- Framebuffer driver for DisplayLink USB controller * * Copyright (C) 2009 Roberto De Ioris <roberto@unbit.it> * Copyright (C) 2009 Jaya Kumar <jayakumar.lkml@gmail.com> * Copyright (C) 2009 Bernie Thompson <bernie@plugable.com> * * This file is subject to the terms and conditions of the GNU Genera...
gpl-2.0
goodhanrry/N910U_goodhanrry_kernel
fs/gfs2/rgrp.c
2067
64103
/* * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. * Copyright (C) 2004-2008 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 Licen...
gpl-2.0
FrostBite-Android/isotope-kernel
drivers/net/wireless/libertas/rx.c
2323
7480
/* * This file contains the handling of RX in wlan driver. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/etherdevice.h> #include <linux/slab.h> #include <linux/types.h> #include <net/cfg80211.h> #include "defs.h" #include "host.h" #include "radiotap.h" #include "decl.h" #include "dev.h" struct et...
gpl-2.0
gweedo767/android_kernel_motorola_msm8960-common
arch/s390/kernel/kprobes.c
2835
18462
/* * Kernel Probes (KProbes) * * 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 distributed ...
gpl-2.0
kurainooni/rk30-kernel
arch/mips/mm/tlb-r8k.c
2835
5498
/* * 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) 1996 David S. Miller (davem@davemloft.net) * Copyright (C) 1997, 1998, 1999, 2000 Ralf Baechle ralf@gnu.org * Carsten Lang...
gpl-2.0
russelldias98/Omega-Kernel
drivers/clocksource/sh_mtu2.c
3091
8323
/* * SuperH Timer Support - MTU2 * * Copyright (C) 2009 Magnus Damm * * 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 * * This program is distributed in...
gpl-2.0
malvira/lpc31xx
drivers/staging/media/go7007/go7007-v4l2.c
3347
45832
/* * Copyright (C) 2005-2006 Micronas USA 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. * * This program is distributed in the hope that it will be useful, * but WIT...
gpl-2.0
Eliminater74/LGD851_G3_L_Kernel_v20E
drivers/usb/serial/keyspan.c
3603
68132
/* Keyspan USB to Serial Converter driver (C) Copyright (C) 2000-2001 Hugh Blemings <hugh@blemings.org> (C) Copyright (C) 2002 Greg Kroah-Hartman <greg@kroah.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 F...
gpl-2.0
oppo-source/Find7-kernel-source
kernel/srcu.c
4371
11471
/* * Sleepable Read-Copy Update mechanism for mutual exclusion. * * 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. ...
gpl-2.0
TeamWin/android_kernel_samsung_zerolteeu
drivers/input/joystick/iforce/iforce-main.c
4883
13392
/* * Copyright (c) 2000-2002 Vojtech Pavlik <vojtech@ucw.cz> * Copyright (c) 2001-2002, 2007 Johann Deneux <johann.deneux@gmail.com> * * USB/RS232 I-Force joysticks and wheels. */ /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License ...
gpl-2.0
cuteprince/kernel_3.4_pico
arch/microblaze/kernel/cpu/cache.c
7699
16970
/* * Cache control for MicroBlaze cache memories * * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu> * Copyright (C) 2007-2009 PetaLogix * Copyright (C) 2007-2009 John Williams <john.williams@petalogix.com> * * This file is subject to the terms and conditions of the GNU General * Public License. See the...
gpl-2.0
bio4554/ker.nl
drivers/input/touchscreen/wm9713.c
8467
12515
/* * wm9713.c -- Codec touch driver for Wolfson WM9713 AC97 Codec. * * Copyright 2003, 2004, 2005, 2006, 2007, 2008 Wolfson Microelectronics PLC. * Author: Liam Girdwood <lrg@slimlogic.co.uk> * Parts Copyright : Ian Molton <spyro@f2s.com> * Andrew Zabolotny <zap@homelink.ru> * ...
gpl-2.0
KylinUI/android_kernel_htc_msm8960
drivers/media/video/cx25840/cx25840-vbi.c
9235
6978
/* cx25840 VBI functions * * 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 distributed in the...
gpl-2.0
teamacid/niltmt_kernel
drivers/scsi/sun3x_esp.c
9235
7400
/* sun3x_esp.c: ESP front-end for Sun3x systems. * * Copyright (C) 2007,2008 Thomas Bogendoerfer (tsbogend@alpha.franken.de) */ #include <linux/kernel.h> #include <linux/gfp.h> #include <linux/types.h> #include <linux/delay.h> #include <linux/module.h> #include <linux/init.h> #include <linux/platform_device.h> #inc...
gpl-2.0
BlownFuze/i717_TW_JBkernel
drivers/hid/hid-ezkey.c
9747
2453
/* * HID driver for some ezkey "special" devices * * Copyright (c) 1999 Andreas Gal * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz> * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc * Copyright (c) 2006-2007 Jiri Kosina * Copyright (c) 2007 Paul Walmsley * Copyright...
gpl-2.0
Snepsts/e980_stock
arch/mips/dec/ioasic-irq.c
9747
1717
/* * DEC I/O ASIC interrupts. * * Copyright (c) 2002, 2003 Maciej W. Rozycki * * 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...
gpl-2.0
Stri5e/MC
src/server/game/Entities/Object/Updates/UpdateData.cpp
20
2243
/* * Copyright (C) 2008-2012 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.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 ver...
gpl-2.0
openrisc/or1k-src
gdb/testsuite/gdb.python/py-block.c
20
1073
/* This testcase is part of GDB, the GNU debugger. Copyright 2010-2013 Free Software Foundation, Inc. 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 3 of the License, or ...
gpl-2.0
JavaGuy147/RT-Xen-Scheduler
xen/common/sysctl.c
20
11012
/****************************************************************************** * sysctl.c * * System management operations. For use by node control stack. * * Copyright (c) 2002-2006, K Fraser */ #include <xen/config.h> #include <xen/types.h> #include <xen/lib.h> #include <xen/mm.h> #include <xen/sched.h> #in...
gpl-2.0
u-mobo/linux-imx
arch/arm/mach-imx/gpc.c
20
14466
/* * Copyright 2011-2014 Freescale Semiconductor, Inc. * Copyright 2011 Linaro Ltd. * * The code contained herein is licensed under the GNU General Public * License. You may obtain a copy of the GNU General Public License * Version 2 or later at the following locations: * * http://www.opensource.org/licenses/gp...
gpl-2.0
svn2github/Valgrind3
none/tests/amd64/pcmpstr64.c
20
85233
/* Tests in detail the core arithmetic for pcmp{e,i}str{i,m} using pcmpistri to drive it. Does not check the e-vs-i or i-vs-m aspect. */ #include <string.h> #include <stdio.h> #include <assert.h> typedef unsigned int UInt; typedef signed int Int; typedef unsigned char UChar; typedef signed char ...
gpl-2.0
animania260/android_ani-kernel_galaxy_reverb
drivers/thermal/msm8960_tsens.c
276
26594
/* Copyright (c) 2011, 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 hope th...
gpl-2.0
aranb/linux
drivers/phy/phy-rcar-gen2.c
276
8470
/* * Renesas R-Car Gen2 PHY driver * * Copyright (C) 2014 Renesas Solutions Corp. * Copyright (C) 2014 Cogent Embedded, 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. ...
gpl-2.0
maxwen/enrc2b-kernel-BLADE
drivers/media/video/hdpvr/hdpvr-core.c
532
12638
/* * Hauppauge HD PVR USB driver * * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com) * Copyright (C) 2008 Janne Grunau (j@jannau.net) * Copyright (C) 2008 John Poet * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licen...
gpl-2.0
f123h456/linux
drivers/gpu/drm/radeon/radeon_ib.c
1044
8871
/* * Copyright 2008 Advanced Micro Devices, Inc. * Copyright 2008 Red Hat Inc. * Copyright 2009 Jerome Glisse. * * 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, in...
gpl-2.0
TeamWin/android_kernel_samsung_zerofltespr
net/l2tp/l2tp_ip.c
1556
16210
/* * L2TPv3 IP encapsulation support * * Copyright (c) 2008,2009,2010 Katalix Systems 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; either version * 2 of the License, or (at your...
gpl-2.0
emuikernel/WNR2000v4
git_home/linux-2.6.git/drivers/video/controlfb.c
1556
27775
/* * controlfb.c -- frame buffer device for the PowerMac 'control' display * * Created 12 July 1998 by Dan Jacobowitz <dan@debian.org> * Copyright (C) 1998 Dan Jacobowitz * Copyright (C) 2001 Takashi Oe * * Mmap code by Michel Lanners <mlan@cpu.lu> * * Frame buffer structure from: * drivers/video/chi...
gpl-2.0
mus1711/nitro_kernel
mm/hugetlb_cgroup.c
2324
10955
/* * * Copyright IBM Corporation, 2012 * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2.1 of the GNU Lesser General Public License * as published by the Free Software Foundation. * * This progr...
gpl-2.0
RazerRom/kernel_lge_hammerhead
drivers/staging/speakup/speakup_soft.c
3092
9712
/* speakup_soft.c - speakup driver to register and make available * a user space device for software synthesizers. written by: Kirk * Reiser <kirk@braille.uwo.ca> * * Copyright (C) 2003 Kirk Reiser. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General...
gpl-2.0
dj-sand/android_kernel_htc_flounder
drivers/cpufreq/ppc_cbe_cpufreq_pervasive.c
4628
2928
/* * pervasive backend for the cbe_cpufreq driver * * This driver makes use of the pervasive unit to * engage the desired frequency. * * (C) Copyright IBM Deutschland Entwicklung GmbH 2005-2007 * * Author: Christian Krafft <krafft@de.ibm.com> * * This program is free software; you can redistribute it and/or m...
gpl-2.0
victormlourenco/kernel_msm
drivers/i2c/busses/i2c-omap.c
4884
33588
/* * TI OMAP I2C master mode driver * * Copyright (C) 2003 MontaVista Software, Inc. * Copyright (C) 2005 Nokia Corporation * Copyright (C) 2004 - 2007 Texas Instruments. * * Originally written by MontaVista Software, Inc. * Additional contributions by: * Tony Lindgren <tony@atomide.com> * Imre Deak <imre.dea...
gpl-2.0
AICP/kernel_htc_msm8960-old
arch/mips/math-emu/kernel_linkage.c
9492
2723
/* * Kevin D. Kissell, kevink@mips and Carsten Langgaard, carstenl@mips.com * Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved. * * This program is free software; you can distribute it and/or modify it * under the terms of the GNU General Public License (Version 2) as * published by the Free S...
gpl-2.0
mitake/linux
arch/x86/boot/early_serial_console.c
11540
3436
#include "boot.h" #define DEFAULT_SERIAL_PORT 0x3f8 /* ttyS0 */ #define XMTRDY 0x20 #define DLAB 0x80 #define TXR 0 /* Transmit register (WRITE) */ #define RXR 0 /* Receive register (READ) */ #define IER 1 /* Interrupt Enable */ #define I...
gpl-2.0
n1kolaa/android_kernel_lge_msm8974
arch/x86/boot/early_serial_console.c
11540
3436
#include "boot.h" #define DEFAULT_SERIAL_PORT 0x3f8 /* ttyS0 */ #define XMTRDY 0x20 #define DLAB 0x80 #define TXR 0 /* Transmit register (WRITE) */ #define RXR 0 /* Receive register (READ) */ #define IER 1 /* Interrupt Enable */ #define I...
gpl-2.0
faux123/private-tuna
fs/nls/nls_iso8859-2.c
12564
13181
/* * linux/fs/nls/nls_iso8859-2.c * * Charset iso8859-2 translation tables. * Generated automatically from the Unicode and charset * tables from the Unicode Organization (www.unicode.org). * The Unicode to charset table has only exact mappings. */ #include <linux/module.h> #include <linux/kernel.h> #include <li...
gpl-2.0
diegocortassa/android-kernel-mediacom-mp810c
arch/mips/pci/pci-emma2rh.c
13844
2700
/* * Copyright (C) NEC Electronics Corporation 2004-2006 * * This file is based on the arch/mips/ddb5xxx/ddb5477/pci.c * * Copyright 2001 MontaVista Software Inc. * * 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 ...
gpl-2.0
vwmofo/android_kernel_htc_msm8960
arch/microblaze/mm/mmu_context.c
13844
2042
/* * This file contains the routines for handling the MMU. * * Copyright (C) 2007 Xilinx, Inc. All rights reserved. * * Derived from arch/ppc/mm/4xx_mmu.c: * -- paulus * * Derived from arch/ppc/mm/init.c: * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) * * Modifications by Paul Mackerras ...
gpl-2.0
olafdietsche/linux-accessfs
arch/microblaze/mm/mmu_context.c
13844
2042
/* * This file contains the routines for handling the MMU. * * Copyright (C) 2007 Xilinx, Inc. All rights reserved. * * Derived from arch/ppc/mm/4xx_mmu.c: * -- paulus * * Derived from arch/ppc/mm/init.c: * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) * * Modifications by Paul Mackerras ...
gpl-2.0
jameshilliard/WM2500RP-V1.0.0.34_gpl_src
git_home/linux.git/arch/powerpc/boot/cuboot-yosemite.c
14100
1095
/* * Old U-boot compatibility for Yosemite * * Author: Josh Boyer <jwboyer@linux.vnet.ibm.com> * * Copyright 2008 IBM Corporation * * 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
aozima/rt-thread
bsp/lpc824/Libraries/common/chip/syscon_8xx.c
21
3892
/* * @brief LPC8xx System & Control driver * * @note * Copyright(C) NXP Semiconductors, 2012 * All rights reserved. * * @par * Software that is described herein is for illustrative purposes only * which provides customers with programming information regarding the * LPC products. This software is supplied "A...
gpl-2.0
BigBot96/android_kernel_samsung_espressovzw
drivers/usb/host/xhci-hub.c
533
28533
/* * xHCI host controller driver * * Copyright (C) 2008 Intel Corp. * * Author: Sarah Sharp * Some code borrowed from the Linux EHCI driver. * * 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 Soft...
gpl-2.0
kamarush/Xperia-2011-4.1.B.0.431-Sources
drivers/video/epson1355fb.c
789
18276
/* * linux/drivers/video/epson1355fb.c -- Epson S1D13505 frame buffer for 2.5. * * Epson Research S1D13505 Embedded RAMDAC LCD/CRT Controller * (previously known as SED1355) * * Cf. http://www.erd.epson.com/vdc/html/S1D13505.html * * * Copyright (C) Hewlett-Packard Company. All rights reserved. * * Writte...
gpl-2.0
voodik/android_kernel_hardkernel_odroidxu3
arch/x86/kernel/traps.c
1301
21461
/* * Copyright (C) 1991, 1992 Linus Torvalds * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs * * Pentium III FXSR, SSE support * Gareth Hughes <gareth@valinux.com>, May 2000 */ /* * Handle hardware traps and faults. */ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt #include <linux/context_tracking.h>...
gpl-2.0
WildfireDEV/s6
sound/soc/tegra/tegra_wm8753.c
2069
5675
/* * tegra_wm8753.c - Tegra machine ASoC driver for boards using WM8753 codec. * * Author: Stephen Warren <swarren@nvidia.com> * Copyright (C) 2010-2012 - NVIDIA, Inc. * * Based on code copyright/by: * * (c) 2009, 2010 Nvidia Graphics Pvt. Ltd. * * Copyright 2007 Wolfson Microelectronics PLC. * Author: Graem...
gpl-2.0
TheSSJ/android_kernel_asus_moorefield
drivers/gpio/gpio-janz-ttl.c
2325
5375
/* * Janz MODULbus VMOD-TTL GPIO Driver * * Copyright (c) 2010 Ira W. Snyder <iws@ovro.caltech.edu> * * 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 (...
gpl-2.0
uei/enchantmoon_kernel
linux-3.0/fs/ext4/xattr_security.c
2837
1950
/* * linux/fs/ext4/xattr_security.c * Handler for storing security labels as extended attributes. */ #include <linux/module.h> #include <linux/string.h> #include <linux/fs.h> #include <linux/security.h> #include <linux/slab.h> #include "ext4_jbd2.h" #include "ext4.h" #include "xattr.h" static size_t ext4_xattr_sec...
gpl-2.0
rogersb11/android_kernel_samsung_smdk4x12
drivers/rtc/rtc-lpc32xx.c
3093
10419
/* * Copyright (C) 2010 NXP Semiconductors * * 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. * * You should hav...
gpl-2.0
yajnab/android_kernel_htc_golfu
drivers/staging/tidspbridge/rmgr/dbdcd.c
3093
38691
/* * dbdcd.c * * DSP-BIOS Bridge driver support functions for TI OMAP processors. * * This file contains the implementation of the DSP/BIOS Bridge * Configuration Database (DCD). * * Notes: * The fxn dcd_get_objects can apply a callback fxn to each DCD object * that is located in a specified COFF file. A...
gpl-2.0
MoKee/android_kernel_samsung_smdk4x12
tools/firewire/nosy-dump.c
8469
25674
/* * nosy-dump - Interface to snoop mode driver for TI PCILynx 1394 controllers * Copyright (C) 2002-2006 Kristian Høgsberg * * 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
TeamOrion-Devices/kernel_htc_msm8974
drivers/tc/tc.c
12053
5224
/* * TURBOchannel bus services. * * Copyright (c) Harald Koerfgen, 1998 * Copyright (c) 2001, 2003, 2005, 2006 Maciej W. Rozycki * Copyright (c) 2005 James Simmons * * 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...
gpl-2.0
mer-hybris-kis3/android_kernel_zte_msm8610
fs/nls/nls_cp1251.c
12565
12751
/* * linux/fs/nls/nls_cp1251.c * * Charset cp1251 translation tables. * Generated automatically from the Unicode and charset * tables from the Unicode Organization (www.unicode.org). * The Unicode to charset table has only exact mappings. */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/st...
gpl-2.0
AndroidOpenSourceXperia/android_kernel_sony_u8500
lib/is_single_threaded.c
13589
1363
/* Function to determine if a thread group is single threaded or not * * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * - Derived from security/selinux/hooks.c * * This program is free software; you can redistribute it and/or * modify it under the terms o...
gpl-2.0
nextgis/NextGIS_QGIS_open
src/server/qgsmslayerbuilder.cpp
22
2958
/*************************************************************************** qgsmslayerbuilder.cpp --------------------- begin : July, 2008 copyright : (C) 2008 by Marco Hugentobler email : marco dot hugentobler a...
gpl-2.0
ArtisteHsu/jetson-tk1-r21.4-kernel
drivers/parisc/wax.c
22
3218
/* * WAX Device Driver * * (c) Copyright 2000 The Puffin Group Inc. * * 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...
gpl-2.0
daavery/audacity
lib-src/portaudio-v19/src/common/pa_front.c
22
55913
/* * $Id: pa_front.c 1880 2012-12-04 18:39:48Z rbencina $ * Portable Audio I/O Library Multi-Host API front end * Validate function parameters and manage multiple host APIs. * * Based on the Open Source API proposed by Ross Bencina * Copyright (c) 1999-2008 Ross Bencina, Phil Burk * * Permission is hereby grant...
gpl-2.0
SSLab-NTHU/linux-guest-armvisor
drivers/staging/comedi/drivers/dt2817.c
22
4517
/* comedi/drivers/dt2817.c Hardware driver for Data Translation DT2817 COMEDI - Linux Control and Measurement Device Interface Copyright (C) 1998 David A. Schleef <ds@schleef.org> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public ...
gpl-2.0
frankoid/kernel-enrc2b
arch/arm/mm/fault.c
22
17615
/* * linux/arch/arm/mm/fault.c * * Copyright (C) 1995 Linus Torvalds * Modifications for ARM processor (c) 1995-2004 Russell King * * 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
stevelord/PR30
linux-2.6.31/drivers/staging/vt6655/wmgr.c
22
177651
/* * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc. * 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 as published by * the Free Software Foundation; either version 2 of the License, or * (at your opt...
gpl-2.0
wkritzinger/asuswrt-merlin
release/src/router/samba-3.5.8/source4/torture/rpc/samba3rpc.c
22
93209
/* Unix SMB/CIFS implementation. dcerpc torture tests, designed to walk Samba3 code paths Copyright (C) Volker Lendecke 2006 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; eithe...
gpl-2.0
CyanogenModXT720/android_kernel
net/sunrpc/auth_gss/gss_krb5_mech.c
278
7206
/* * linux/net/sunrpc/gss_krb5_mech.c * * Copyright (c) 2001 The Regents of the University of Michigan. * All rights reserved. * * Andy Adamson <andros@umich.edu> * J. Bruce Fields <bfields@umich.edu> * * Redistribution and use in source and binary forms, with or without * modification, are permitted p...
gpl-2.0
c2h2/aria-imx6-kernel
kernel/dma.c
278
3691
/* * linux/kernel/dma.c: A DMA channel allocator. Inspired by linux/kernel/irq.c. * * Written by Hennus Bergman, 1992. * * 1994/12/26: Changes by Alex Nash to fix a minor bug in /proc/dma. * In the previous version the reported device could end up being wrong, * if a device requested a DMA channel that was a...
gpl-2.0
wejoncy/linux-digilent
arch/sh/kernel/cpu/sh4a/pinmux-sh7734.c
278
93010
/* * SH7734 processor support - PFC hardware block * * Copyright (C) 2012 Renesas Solutions Corp. * Copyright (C) 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of ...
gpl-2.0
RodolfoSilva/linux
drivers/acpi/acpica/nsrepair2.c
534
31111
/****************************************************************************** * * Module Name: nsrepair2 - Repair for objects returned by specific * predefined methods * *****************************************************************************/ /* * Copyright (C) 2000 - 2015, Intel...
gpl-2.0
jiankangshiye/linux-2.6.32.63-mini2440
drivers/net/skfp/ess.c
790
19333
/****************************************************************************** * * (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
droidzone/Supernova-Kernel
net/ipv4/inet_lro.c
1302
15290
/* * linux/net/ipv4/inet_lro.c * * Large Receive Offload (ipv4 / tcp) * * (C) Copyright IBM Corp. 2007 * * Authors: * Jan-Bernd Themann <themann@de.ibm.com> * Christoph Raisch <raisch@de.ibm.com> * * * This program is free software; you can redistribute it and/or modify * it under the terms...
gpl-2.0
Pafcholini/emotion_beta_511_no_updates
drivers/i2c/busses/i2c-pxa.c
2070
29875
/* * i2c_adap_pxa.c * * I2C adapter for the PXA I2C bus access. * * Copyright (C) 2002 Intrinsyc Software Inc. * Copyright (C) 2004-2005 Deep Blue Solutions Ltd. * * 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 *...
gpl-2.0
perkarom/Shark-E
arch/sparc/kernel/leon_kernel.c
2582
13809
/* * Copyright (C) 2009 Daniel Hellstrom (daniel@gaisler.com) Aeroflex Gaisler AB * Copyright (C) 2009 Konrad Eisele (konrad@gaisler.com) Aeroflex Gaisler AB */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/errno.h> #include <linux/mutex.h> #include <linux/of.h> #include <linux/of_platform.h> ...
gpl-2.0
allwinner-ics/lichee_linux-3.0
drivers/usb/atm/cxacru.c
2582
40116
/****************************************************************************** * cxacru.c - driver for USB ADSL modems based on * Conexant AccessRunner chipset * * Copyright (C) 2004 David Woodhouse, Duncan Sands, Roman Kagan * Copyright (C) 2005 Duncan Sands, Roman Kagan (rkagan % mail ! ru) ...
gpl-2.0
RegaliaEzz/Hexa-N9208
drivers/pinctrl/vt8500/pinctrl-wm8505.c
3094
16595
/* * Pinctrl data for Wondermedia WM8505 SoC * * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * T...
gpl-2.0
hustard/h2fs
drivers/pinctrl/vt8500/pinctrl-vt8500.c
3094
15558
/* * Pinctrl data for VIA VT8500 SoC * * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This prog...
gpl-2.0
AICP/kernel_htc_endeavoru
drivers/media/rc/keymaps/rc-iodata-bctv7e.c
3094
2098
/* iodata-bctv7e.h - Keytable for iodata_bctv7e Remote Controller * * keymap imported from ir-keymaps.c * * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@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...
gpl-2.0
TeamRegular/android_kernel_hisense_m470
drivers/media/rc/keymaps/rc-purpletv.c
3094
1955
/* purpletv.h - Keytable for purpletv Remote Controller * * keymap imported from ir-keymaps.c * * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@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...
gpl-2.0
OwnROM-Devices/android_kernel_samsung_golden
drivers/net/wimax/i2400m/debugfs.c
3094
10169
/* * Intel Wireless WiMAX Connection 2400m * Debugfs interfaces to manipulate driver and device information * * * Copyright (C) 2007 Intel Corporation <linux-wimax@intel.com> * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> * * This program is free software; you can redistribute it and/or * modify it un...
gpl-2.0
johnnyslt/pyramid-3.4.10
net/netfilter/ipvs/ip_vs_pe_sip.c
3862
4359
#define KMSG_COMPONENT "IPVS" #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt #include <linux/module.h> #include <linux/kernel.h> #include <net/ip_vs.h> #include <net/netfilter/nf_conntrack.h> #include <linux/netfilter/nf_conntrack_sip.h> #ifdef CONFIG_IP_VS_DEBUG static const char *ip_vs_dbg_callid(char *buf, size_t bu...
gpl-2.0
xperiafan13-rom/FenomenalMOD-CAF
net/bridge/netfilter/ebtable_broute.c
5398
2340
/* * ebtable_broute * * Authors: * Bart De Schuymer <bdschuym@pandora.be> * * April, 2002 * * This table lets you choose between routing and bridging for frames * entering on a bridge enslaved nic. This table is traversed before any * other ebtables table. See net/bridge/br_input.c. */ #include <linux/...
gpl-2.0
Evervolv/android_kernel_samsung_msm8660
arch/m68k/platform/532x/gpio.c
7446
10512
/* * Coldfire generic GPIO support * * (C) Copyright 2009, Steven King <sfking@fdwdc.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; version 2 of the License. * * This program is...
gpl-2.0
schmatzler/zte-kernel-tureis
arch/powerpc/boot/elf_util.c
12054
2339
/* * Copyright (C) Paul Mackerras 1997. * * Updates for PPC64 by Todd Inglett, Dave Engebretsen & Peter Bergner. * * 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 t...
gpl-2.0
Perferom/android_kernel_samsung_msm
fs/nls/nls_cp866.c
12566
12666
/* * linux/fs/nls/nls_cp866.c * * Charset cp866 translation tables. * Generated automatically from the Unicode and charset * tables from the Unicode Organization (www.unicode.org). * The Unicode to charset table has only exact mappings. */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/stri...
gpl-2.0
CyanogenMod/htc-kernel-msm7x30
fs/nls/nls_cp852.c
12566
14830
/* * linux/fs/nls/nls_cp852.c * * Charset cp852 translation tables. * Generated automatically from the Unicode and charset * tables from the Unicode Organization (www.unicode.org). * The Unicode to charset table has only exact mappings. */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/stri...
gpl-2.0
TeamExodus/kernel_cyanogen_msm8916
fs/nls/nls_cp864.c
12566
19047
/* * linux/fs/nls/nls_cp864.c * * Charset cp864 translation tables. * Generated automatically from the Unicode and charset * tables from the Unicode Organization (www.unicode.org). * The Unicode to charset table has only exact mappings. */ #include <linux/module.h> #include <linux/kernel.h> #include <linux/stri...
gpl-2.0
bq-rk3066/android_kernel_bq_rk3188_DEPRECATED
fs/nls/nls_iso8859-7.c
12566
13558
/* * linux/fs/nls/nls_iso8859-7.c * * Charset iso8859-7 translation tables. * Generated automatically from the Unicode and charset * tables from the Unicode Organization (www.unicode.org). * The Unicode to charset table has only exact mappings. */ #include <linux/module.h> #include <linux/kernel.h> #include <li...
gpl-2.0
sktjdgns1189/android_kernel_samsung_SHW-M130K
fs/nls/nls_iso8859-7.c
12566
13558
/* * linux/fs/nls/nls_iso8859-7.c * * Charset iso8859-7 translation tables. * Generated automatically from the Unicode and charset * tables from the Unicode Organization (www.unicode.org). * The Unicode to charset table has only exact mappings. */ #include <linux/module.h> #include <linux/kernel.h> #include <li...
gpl-2.0