diff options
author | Srikant Patnaik | 2015-01-11 12:28:04 +0530 |
---|---|---|
committer | Srikant Patnaik | 2015-01-11 12:28:04 +0530 |
commit | 871480933a1c28f8a9fed4c4d34d06c439a7a422 (patch) | |
tree | 8718f573808810c2a1e8cb8fb6ac469093ca2784 /ANDROID_3.4.5/arch/ia64/dig | |
parent | 9d40ac5867b9aefe0722bc1f110b965ff294d30d (diff) | |
download | FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.gz FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.tar.bz2 FOSSEE-netbook-kernel-source-871480933a1c28f8a9fed4c4d34d06c439a7a422.zip |
Moved, renamed, and deleted files
The original directory structure was scattered and unorganized.
Changes are basically to make it look like kernel structure.
Diffstat (limited to 'ANDROID_3.4.5/arch/ia64/dig')
-rw-r--r-- | ANDROID_3.4.5/arch/ia64/dig/Makefile | 14 | ||||
-rw-r--r-- | ANDROID_3.4.5/arch/ia64/dig/machvec.c | 3 | ||||
-rw-r--r-- | ANDROID_3.4.5/arch/ia64/dig/machvec_vtd.c | 3 | ||||
-rw-r--r-- | ANDROID_3.4.5/arch/ia64/dig/setup.c | 70 |
4 files changed, 0 insertions, 90 deletions
diff --git a/ANDROID_3.4.5/arch/ia64/dig/Makefile b/ANDROID_3.4.5/arch/ia64/dig/Makefile deleted file mode 100644 index ae16ec4f..00000000 --- a/ANDROID_3.4.5/arch/ia64/dig/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -# -# ia64/platform/dig/Makefile -# -# Copyright (C) 1999 Silicon Graphics, Inc. -# Copyright (C) Srinivasa Thirumalachar (sprasad@engr.sgi.com) -# - -obj-y := setup.o -ifeq ($(CONFIG_INTEL_IOMMU), y) -obj-$(CONFIG_IA64_GENERIC) += machvec.o machvec_vtd.o -else -obj-$(CONFIG_IA64_GENERIC) += machvec.o -endif - diff --git a/ANDROID_3.4.5/arch/ia64/dig/machvec.c b/ANDROID_3.4.5/arch/ia64/dig/machvec.c deleted file mode 100644 index 0c55bdaf..00000000 --- a/ANDROID_3.4.5/arch/ia64/dig/machvec.c +++ /dev/null @@ -1,3 +0,0 @@ -#define MACHVEC_PLATFORM_NAME dig -#define MACHVEC_PLATFORM_HEADER <asm/machvec_dig.h> -#include <asm/machvec_init.h> diff --git a/ANDROID_3.4.5/arch/ia64/dig/machvec_vtd.c b/ANDROID_3.4.5/arch/ia64/dig/machvec_vtd.c deleted file mode 100644 index 7cd3eb47..00000000 --- a/ANDROID_3.4.5/arch/ia64/dig/machvec_vtd.c +++ /dev/null @@ -1,3 +0,0 @@ -#define MACHVEC_PLATFORM_NAME dig_vtd -#define MACHVEC_PLATFORM_HEADER <asm/machvec_dig_vtd.h> -#include <asm/machvec_init.h> diff --git a/ANDROID_3.4.5/arch/ia64/dig/setup.c b/ANDROID_3.4.5/arch/ia64/dig/setup.c deleted file mode 100644 index 98131e1d..00000000 --- a/ANDROID_3.4.5/arch/ia64/dig/setup.c +++ /dev/null @@ -1,70 +0,0 @@ -/* - * Platform dependent support for DIG64 platforms. - * - * Copyright (C) 1999 Intel Corp. - * Copyright (C) 1999, 2001 Hewlett-Packard Co - * Copyright (C) 1999, 2001, 2003 David Mosberger-Tang <davidm@hpl.hp.com> - * Copyright (C) 1999 VA Linux Systems - * Copyright (C) 1999 Walt Drummond <drummond@valinux.com> - * Copyright (C) 1999 Vijay Chander <vijay@engr.sgi.com> - */ - -#include <linux/init.h> -#include <linux/delay.h> -#include <linux/kernel.h> -#include <linux/kdev_t.h> -#include <linux/string.h> -#include <linux/screen_info.h> -#include <linux/console.h> -#include <linux/timex.h> -#include <linux/sched.h> -#include <linux/root_dev.h> - -#include <asm/io.h> -#include <asm/machvec.h> -#include <asm/setup.h> - -void __init -dig_setup (char **cmdline_p) -{ - unsigned int orig_x, orig_y, num_cols, num_rows, font_height; - - /* - * Default to /dev/sda2. This assumes that the EFI partition - * is physical disk 1 partition 1 and the Linux root disk is - * physical disk 1 partition 2. - */ - ROOT_DEV = Root_SDA2; /* default to second partition on first drive */ - -#ifdef CONFIG_SMP - init_smp_config(); -#endif - - memset(&screen_info, 0, sizeof(screen_info)); - - if (!ia64_boot_param->console_info.num_rows - || !ia64_boot_param->console_info.num_cols) - { - printk(KERN_WARNING "dig_setup: warning: invalid screen-info, guessing 80x25\n"); - orig_x = 0; - orig_y = 0; - num_cols = 80; - num_rows = 25; - font_height = 16; - } else { - orig_x = ia64_boot_param->console_info.orig_x; - orig_y = ia64_boot_param->console_info.orig_y; - num_cols = ia64_boot_param->console_info.num_cols; - num_rows = ia64_boot_param->console_info.num_rows; - font_height = 400 / num_rows; - } - - screen_info.orig_x = orig_x; - screen_info.orig_y = orig_y; - screen_info.orig_video_cols = num_cols; - screen_info.orig_video_lines = num_rows; - screen_info.orig_video_points = font_height; - screen_info.orig_video_mode = 3; /* XXX fake */ - screen_info.orig_video_isVGA = 1; /* XXX fake */ - screen_info.orig_video_ega_bx = 3; /* XXX fake */ -} |