Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 77316
b: refs/heads/master
c: eee87d3
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Jean Delvare committed Jan 27, 2008
1 parent f0a44cc commit 28ddcbe
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 1,253 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: 569be443e3c1329fc6725988004f5d8a32fe3be5
refs/heads/master: eee87d3196c9a7ac3422f4298e2250ca68d791c1
7 changes: 0 additions & 7 deletions trunk/Documentation/feature-removal-schedule.txt
Original file line number Diff line number Diff line change
Expand Up @@ -266,13 +266,6 @@ Who: Tejun Heo <htejun@gmail.com>

---------------------------

What: Legacy RTC drivers (under drivers/i2c/chips)
When: November 2007
Why: Obsolete. We have a RTC subsystem with better drivers.
Who: Jean Delvare <khali@linux-fr.org>

---------------------------

What: iptables SAME target
When: 1.1. 2008
Files: net/ipv4/netfilter/ipt_SAME.c, include/linux/netfilter_ipv4/ipt_SAME.h
Expand Down
20 changes: 0 additions & 20 deletions trunk/arch/ppc/platforms/83xx/mpc834x_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,26 +224,6 @@ mpc834x_sys_init_IRQ(void)
ipic_set_default_priority();
}

#if defined(CONFIG_I2C_MPC) && defined(CONFIG_SENSORS_DS1374)
extern ulong ds1374_get_rtc_time(void);
extern int ds1374_set_rtc_time(ulong);

static int __init
mpc834x_rtc_hookup(void)
{
struct timespec tv;

ppc_md.get_rtc_time = ds1374_get_rtc_time;
ppc_md.set_rtc_time = ds1374_set_rtc_time;

tv.tv_nsec = 0;
tv.tv_sec = (ppc_md.get_rtc_time)();
do_settimeofday(&tv);

return 0;
}
late_initcall(mpc834x_rtc_hookup);
#endif
static __inline__ void
mpc834x_sys_set_bat(void)
{
Expand Down
21 changes: 0 additions & 21 deletions trunk/arch/ppc/platforms/85xx/tqm85xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,27 +258,6 @@ int tqm85xx_show_cpuinfo(struct seq_file *m)
return 0;
}

#if defined(CONFIG_I2C) && defined(CONFIG_SENSORS_DS1337)
extern ulong ds1337_get_rtc_time(void);
extern int ds1337_set_rtc_time(unsigned long nowtime);

static int __init
tqm85xx_rtc_hookup(void)
{
struct timespec tv;

ppc_md.set_rtc_time = ds1337_set_rtc_time;
ppc_md.get_rtc_time = ds1337_get_rtc_time;

tv.tv_nsec = 0;
tv.tv_sec = (ppc_md.get_rtc_time)();
do_settimeofday(&tv);

return 0;
}
late_initcall(tqm85xx_rtc_hookup);
#endif

#ifdef CONFIG_PCI
/*
* interrupt routing
Expand Down
21 changes: 0 additions & 21 deletions trunk/arch/ppc/platforms/katana.c
Original file line number Diff line number Diff line change
Expand Up @@ -838,27 +838,6 @@ katana_find_end_of_memory(void)
return bdp->bi_memsize;
}

#if defined(CONFIG_I2C_MV64XXX) && defined(CONFIG_SENSORS_M41T00)
extern ulong m41t00_get_rtc_time(void);
extern int m41t00_set_rtc_time(ulong);

static int __init
katana_rtc_hookup(void)
{
struct timespec tv;

ppc_md.get_rtc_time = m41t00_get_rtc_time;
ppc_md.set_rtc_time = m41t00_set_rtc_time;

tv.tv_nsec = 0;
tv.tv_sec = (ppc_md.get_rtc_time)();
do_settimeofday(&tv);

return 0;
}
late_initcall(katana_rtc_hookup);
#endif

#if defined(CONFIG_SERIAL_TEXT_DEBUG) && defined(CONFIG_SERIAL_MPSC_CONSOLE)
static void __init
katana_map_io(void)
Expand Down
38 changes: 0 additions & 38 deletions trunk/drivers/i2c/chips/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,6 @@

menu "Miscellaneous I2C Chip support"

config SENSORS_DS1337
tristate "Dallas DS1337 and DS1339 Real Time Clock (DEPRECATED)"
depends on EXPERIMENTAL
help
If you say yes here you get support for Dallas Semiconductor
DS1337 and DS1339 real-time clock chips.

This driver can also be built as a module. If so, the module
will be called ds1337.

This driver is deprecated and will be dropped soon. Use
rtc-ds1307 instead.

config SENSORS_DS1374
tristate "Dallas DS1374 Real Time Clock (DEPRECATED)"
depends on EXPERIMENTAL
help
If you say yes here you get support for Dallas Semiconductor
DS1374 real-time clock chips.

This driver can also be built as a module. If so, the module
will be called ds1374.

This driver is deprecated and will be dropped soon. Use
rtc-ds1374 instead.

config DS1682
tristate "Dallas DS1682 Total Elapsed Time Recorder with Alarm"
depends on EXPERIMENTAL
Expand Down Expand Up @@ -130,18 +104,6 @@ config TPS65010
This driver can also be built as a module. If so, the module
will be called tps65010.

config SENSORS_M41T00
tristate "ST M41T00 RTC chip (DEPRECATED)"
depends on PPC32
help
If you say yes here you get support for the ST M41T00 RTC chip.

This driver can also be built as a module. If so, the module
will be called m41t00.

This driver is deprecated and will be dropped soon. Use
rtc-ds1307 or rtc-m41t80 instead.

config SENSORS_MAX6875
tristate "Maxim MAX6875 Power supply supervisor"
depends on EXPERIMENTAL
Expand Down
3 changes: 0 additions & 3 deletions trunk/drivers/i2c/chips/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,9 @@
# Makefile for miscellaneous I2C chip drivers.
#

obj-$(CONFIG_SENSORS_DS1337) += ds1337.o
obj-$(CONFIG_SENSORS_DS1374) += ds1374.o
obj-$(CONFIG_DS1682) += ds1682.o
obj-$(CONFIG_SENSORS_EEPROM) += eeprom.o
obj-$(CONFIG_SENSORS_MAX6875) += max6875.o
obj-$(CONFIG_SENSORS_M41T00) += m41t00.o
obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o
obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o
obj-$(CONFIG_PCF8575) += pcf8575.o
Expand Down
Loading

0 comments on commit 28ddcbe

Please sign in to comment.