Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8975
b: refs/heads/master
c: c5f977a
h: refs/heads/master
i:
  8973: c637eb8
  8971: 9c9018c
  8967: 73d8faf
  8959: 854e93c
v: v3
  • Loading branch information
Jeff Garzik committed Sep 16, 2005
1 parent 53bfadb commit 7a3228f
Show file tree
Hide file tree
Showing 81 changed files with 312 additions and 606 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f3d242e8f2bf12cb45eb35b7d2e69483d1209b13
refs/heads/master: c5f977a0d2d6a8f02f32139b5dd129e52073f38f
6 changes: 6 additions & 0 deletions trunk/arch/arm/mach-pxa/lubbock.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ static struct pxa2xx_udc_mach_info udc_info __initdata = {
// no D+ pullup; lubbock can't connect/disconnect in software
};

static struct platform_device lub_audio_device = {
.name = "pxa2xx-ac97",
.id = -1,
};

static struct resource sa1111_resources[] = {
[0] = {
.start = 0x10000000,
Expand Down Expand Up @@ -195,6 +200,7 @@ static struct platform_device smc91x_device = {

static struct platform_device *devices[] __initdata = {
&sa1111_device,
&lub_audio_device,
&smc91x_device,
};

Expand Down
5 changes: 0 additions & 5 deletions trunk/arch/i386/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -908,11 +908,6 @@ config IRQBALANCE
The default yes will allow the kernel to do irq load balancing.
Saying no will keep the kernel from doing irq load balancing.

config HAVE_DEC_LOCK
bool
depends on (SMP || PREEMPT) && X86_CMPXCHG
default y

# turning this on wastes a bunch of space.
# Summit needs it only when NUMA is on
config BOOT_IOREMAP
Expand Down
10 changes: 0 additions & 10 deletions trunk/arch/i386/kernel/acpi/earlyquirk.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#include <linux/pci.h>
#include <asm/pci-direct.h>
#include <asm/acpi.h>
#include <asm/apic.h>

static int __init check_bridge(int vendor, int device)
{
Expand All @@ -16,15 +15,6 @@ static int __init check_bridge(int vendor, int device)
if (vendor == PCI_VENDOR_ID_NVIDIA) {
acpi_skip_timer_override = 1;
}
#ifdef CONFIG_X86_LOCAL_APIC
/*
* ATI IXP chipsets get double timer interrupts.
* For now just do this for all ATI chipsets.
* FIXME: this needs to be checked for the non ACPI case too.
*/
if (vendor == PCI_VENDOR_ID_ATI)
disable_timer_pin_1 = 1;
#endif
return 0;
}

Expand Down
1 change: 0 additions & 1 deletion trunk/arch/i386/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ lib-y = checksum.o delay.o usercopy.o getuser.o putuser.o memcpy.o strstr.o \
bitops.o

lib-$(CONFIG_X86_USE_3DNOW) += mmx.o
lib-$(CONFIG_HAVE_DEC_LOCK) += dec_and_lock.o
42 changes: 0 additions & 42 deletions trunk/arch/i386/lib/dec_and_lock.c

This file was deleted.

5 changes: 0 additions & 5 deletions trunk/arch/ia64/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -298,11 +298,6 @@ config PREEMPT

source "mm/Kconfig"

config HAVE_DEC_LOCK
bool
depends on (SMP || PREEMPT)
default y

config IA32_SUPPORT
bool "Support for Linux/x86 binaries"
help
Expand Down
12 changes: 1 addition & 11 deletions trunk/arch/ia64/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,7 @@ unwcheck: vmlinux
archclean:
$(Q)$(MAKE) $(clean)=$(boot)

archprepare: include/asm-ia64/.offsets.h.stamp

include/asm-ia64/.offsets.h.stamp:
mkdir -p include/asm-ia64
[ -s include/asm-ia64/asm-offsets.h ] \
|| echo "#define IA64_TASK_SIZE 0" > include/asm-ia64/asm-offsets.h
touch $@



CLEAN_FILES += vmlinux.gz bootloader include/asm-ia64/.offsets.h.stamp
CLEAN_FILES += vmlinux.gz bootloader

boot: lib/lib.a vmlinux
$(Q)$(MAKE) $(build)=$(boot) $@
Expand Down
6 changes: 0 additions & 6 deletions trunk/arch/ia64/ia32/binfmt_elf32.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,6 @@ ia32_setup_arg_pages (struct linux_binprm *bprm, int executable_stack)
if (!mpnt)
return -ENOMEM;

if (security_vm_enough_memory((IA32_STACK_TOP - (PAGE_MASK & (unsigned long) bprm->p))
>> PAGE_SHIFT)) {
kmem_cache_free(vm_area_cachep, mpnt);
return -ENOMEM;
}

memset(mpnt, 0, sizeof(*mpnt));

down_write(&current->mm->mmap_sem);
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/ia64/kernel/asm-offsets.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* to extract and format the required data.
*/

#define ASM_OFFSETS_C 1
#include <linux/config.h>

#include <linux/sched.h>
Expand Down
1 change: 0 additions & 1 deletion trunk/arch/ia64/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ lib-$(CONFIG_ITANIUM) += copy_page.o copy_user.o memcpy.o
lib-$(CONFIG_MCKINLEY) += copy_page_mck.o memcpy_mck.o
lib-$(CONFIG_PERFMON) += carta_random.o
lib-$(CONFIG_MD_RAID5) += xor.o
lib-$(CONFIG_HAVE_DEC_LOCK) += dec_and_lock.o

AFLAGS___divdi3.o =
AFLAGS___udivdi3.o = -DUNSIGNED
Expand Down
42 changes: 0 additions & 42 deletions trunk/arch/ia64/lib/dec_and_lock.c

This file was deleted.

5 changes: 0 additions & 5 deletions trunk/arch/m32r/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -220,11 +220,6 @@ config PREEMPT
Say Y here if you are building a kernel for a desktop, embedded
or real-time system. Say N if you are unsure.

config HAVE_DEC_LOCK
bool
depends on (SMP || PREEMPT)
default n

config SMP
bool "Symmetric multi-processing support"
---help---
Expand Down
4 changes: 0 additions & 4 deletions trunk/arch/mips/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1009,10 +1009,6 @@ config GENERIC_CALIBRATE_DELAY
bool
default y

config HAVE_DEC_LOCK
bool
default y

#
# Select some configuration options automatically based on user selections.
#
Expand Down
9 changes: 2 additions & 7 deletions trunk/arch/mips/kernel/sysirix.c
Original file line number Diff line number Diff line change
Expand Up @@ -581,18 +581,13 @@ asmlinkage int irix_brk(unsigned long brk)
}

/*
* Check if we have enough memory..
* Ok, looks good - let it rip.
*/
if (security_vm_enough_memory((newbrk-oldbrk) >> PAGE_SHIFT)) {
if (do_brk(oldbrk, newbrk-oldbrk) != oldbrk) {
ret = -ENOMEM;
goto out;
}

/*
* Ok, looks good - let it rip.
*/
mm->brk = brk;
do_brk(oldbrk, newbrk-oldbrk);
ret = 0;

out:
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Makefile for MIPS-specific library files..
#

lib-y += csum_partial_copy.o dec_and_lock.o memcpy.o promlib.o \
lib-y += csum_partial_copy.o memcpy.o promlib.o \
strlen_user.o strncpy_user.o strnlen_user.o

obj-y += iomap.o
Expand Down
47 changes: 0 additions & 47 deletions trunk/arch/mips/lib/dec_and_lock.c

This file was deleted.

4 changes: 0 additions & 4 deletions trunk/arch/ppc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ config GENERIC_CALIBRATE_DELAY
bool
default y

config HAVE_DEC_LOCK
bool
default y

config PPC
bool
default y
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Makefile for ppc-specific library files..
#

obj-y := checksum.o string.o strcase.o dec_and_lock.o div64.o
obj-y := checksum.o string.o strcase.o div64.o

obj-$(CONFIG_8xx) += rheap.o
obj-$(CONFIG_CPM2) += rheap.o
38 changes: 0 additions & 38 deletions trunk/arch/ppc/lib/dec_and_lock.c

This file was deleted.

4 changes: 0 additions & 4 deletions trunk/arch/ppc64/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ config GENERIC_ISA_DMA
bool
default y

config HAVE_DEC_LOCK
bool
default y

config EARLY_PRINTK
bool
default y
Expand Down
Loading

0 comments on commit 7a3228f

Please sign in to comment.