rpms/kernel/devel hdpvr-ir-enable.patch, NONE, 1.1 kernel.spec, 1.1621, 1.1622

Jarod Wilson jwilson at fedoraproject.org
Thu Jul 9 22:18:28 UTC 2009


Author: jwilson

Update of /cvs/pkgs/rpms/kernel/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv5580

Modified Files:
	kernel.spec 
Added Files:
	hdpvr-ir-enable.patch 
Log Message:
* Thu Jul 09 2009 Jarod Wilson <jarod at redhat.com>
- Enable IR receiver on the Hauppauge HD PVR
- Trim the changelog, axing everything before 2.6.29 (see cvs
  if you still really want to see that far back)


hdpvr-ir-enable.patch:

--- NEW FILE hdpvr-ir-enable.patch ---
>From http://hg.jannau.net/hdpvr/, pending v4l-dvb pull request

---
 drivers/media/video/hdpvr/hdpvr-core.c |    3 +-
 drivers/media/video/hdpvr/hdpvr-i2c.c  |   36 +++++++++++++++++++++++++------
 2 files changed, 30 insertions(+), 9 deletions(-)

diff --git a/drivers/media/video/hdpvr/hdpvr-core.c b/drivers/media/video/hdpvr/hdpvr-core.c
index 188bd5a..878d1e5 100644
--- a/drivers/media/video/hdpvr/hdpvr-core.c
+++ b/drivers/media/video/hdpvr/hdpvr-core.c
@@ -363,8 +363,7 @@ static int hdpvr_probe(struct usb_interface *interface,
 	}
 
 #ifdef CONFIG_I2C
-	/* until i2c is working properly */
-	retval = 0; /* hdpvr_register_i2c_adapter(dev); */
+	retval = hdpvr_register_i2c_adapter(dev);
 	if (retval < 0) {
 		v4l2_err(&dev->v4l2_dev, "registering i2c adapter failed\n");
 		goto error;
diff --git a/drivers/media/video/hdpvr/hdpvr-i2c.c b/drivers/media/video/hdpvr/hdpvr-i2c.c
index c4b5d15..1c01b6c 100644
--- a/drivers/media/video/hdpvr/hdpvr-i2c.c
+++ b/drivers/media/video/hdpvr/hdpvr-i2c.c
@@ -22,7 +22,7 @@
 #define REQTYPE_I2C_WRITE_STATT	0xd0
 
 static int hdpvr_i2c_read(struct hdpvr_device *dev, unsigned char addr,
-			  char *data, int len)
+			  char *data, int len, int bus)
 {
 	int ret;
 	char *buf = kmalloc(len, GFP_KERNEL);
@@ -32,7 +32,7 @@ static int hdpvr_i2c_read(struct hdpvr_device *dev, unsigned char addr,
 	ret = usb_control_msg(dev->udev,
 			      usb_rcvctrlpipe(dev->udev, 0),
 			      REQTYPE_I2C_READ, CTRL_READ_REQUEST,
-			      0x100|addr, 0, buf, len, 1000);
+			      bus<<8 | addr, 0, buf, len, 1000);
 
 	if (ret == len) {
 		memcpy(data, buf, len);
@@ -46,7 +46,7 @@ static int hdpvr_i2c_read(struct hdpvr_device *dev, unsigned char addr,
 }
 
 static int hdpvr_i2c_write(struct hdpvr_device *dev, unsigned char addr,
-			   char *data, int len)
+			   char *data, int len, int bus)
 {
 	int ret;
 	char *buf = kmalloc(len, GFP_KERNEL);
@@ -57,14 +57,14 @@ static int hdpvr_i2c_write(struct hdpvr_device *dev, unsigned char addr,
 	ret = usb_control_msg(dev->udev,
 			      usb_sndctrlpipe(dev->udev, 0),
 			      REQTYPE_I2C_WRITE, CTRL_WRITE_REQUEST,
-			      0x100|addr, 0, buf, len, 1000);
+			      bus<<8 | addr, 0, buf, len, 1000);
 
 	if (ret < 0)
 		goto error;
 
 	ret = usb_control_msg(dev->udev,
 			      usb_rcvctrlpipe(dev->udev, 0),
-			      REQTYPE_I2C_WRITE_STATT, CTRL_READ_REQUEST,
+			      REQTYPE_I2C_WRITE_STAT, CTRL_READ_REQUEST,
 			      0, 0, buf, 2, 1000);
 
 	if (ret == 2)
@@ -93,10 +93,10 @@ static int hdpvr_transfer(struct i2c_adapter *i2c_adapter, struct i2c_msg *msgs,
 
 		if (msgs[i].flags & I2C_M_RD)
 			retval = hdpvr_i2c_read(dev, addr, msgs[i].buf,
-						msgs[i].len);
+						msgs[i].len, 1);
 		else
 			retval = hdpvr_i2c_write(dev, addr, msgs[i].buf,
-						 msgs[i].len);
+						 msgs[i].len, 1);
 	}
 
 	mutex_unlock(&dev->i2c_mutex);
@@ -114,6 +114,26 @@ static struct i2c_algorithm hdpvr_algo = {
 	.functionality = hdpvr_functionality,
 };
 
+static int hdpvr_activate_ir(struct hdpvr_device *dev)
+{
+	char buffer[8];
+
+	mutex_lock(&dev->i2c_mutex);
+
+	hdpvr_i2c_read(dev, 0x54, buffer, 1, 0);
+
+	buffer[0] = 0;
+	buffer[1] = 0x8;
+	hdpvr_i2c_write(dev, 0x54, buffer, 2, 1);
+
+	buffer[1] = 0x18;
+	hdpvr_i2c_write(dev, 0x54, buffer, 2, 1);
+
+	mutex_unlock(&dev->i2c_mutex);
+	return 0;
+}
+
+
 int hdpvr_register_i2c_adapter(struct hdpvr_device *dev)
 {
 	struct i2c_adapter *i2c_adap;
@@ -123,6 +143,8 @@ int hdpvr_register_i2c_adapter(struct hdpvr_device *dev)
 	if (i2c_adap == NULL)
 		goto error;
 
+	hdpvr_activate_ir(dev);
+
 	strlcpy(i2c_adap->name, "Hauppauge HD PVR I2C",
 		sizeof(i2c_adap->name));
 	i2c_adap->algo  = &hdpvr_algo;


View full diff with command:
/usr/bin/cvs -f diff  -kk -u -p -N -r 1.1621 -r 1.1622 kernel.spec
Index: kernel.spec
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/devel/kernel.spec,v
retrieving revision 1.1621
retrieving revision 1.1622
diff -u -p -r1.1621 -r1.1622
--- kernel.spec	8 Jul 2009 20:36:52 -0000	1.1621
+++ kernel.spec	9 Jul 2009 22:17:57 -0000	1.1622
@@ -647,6 +647,7 @@ Patch900: linux-2.6-pci-cacheline-sizing
 
 Patch1515: linux-2.6.31-lirc.patch
 Patch1516: lirc_streamzap-buffer-rework.patch
+Patch1517: hdpvr-ir-enable.patch
 
 # nouveau + drm fixes
 Patch1811: drm-next.patch
@@ -1218,6 +1219,8 @@ ApplyPatch linux-2.6-pci-cacheline-sizin
 ApplyPatch linux-2.6.31-lirc.patch
 # should be a short-lived patch, hopefully fixing bz#508952 w/o breaking anything else...
 ApplyPatch lirc_streamzap-buffer-rework.patch
+# enable IR receiver on Hauppauge HD PVR (v4l-dvb merge pending)
+ApplyPatch hdpvr-ir-enable.patch
 
 ApplyPatch linux-2.6-e1000-ich9.patch
 
@@ -1861,6 +1864,11 @@ fi
 # and build.
 
 %changelog
+* Thu Jul 09 2009 Jarod Wilson <jarod at redhat.com>
+- Enable IR receiver on the Hauppauge HD PVR
+- Trim the changelog, axing everything before 2.6.29 (see cvs
+  if you still really want to see that far back)
+
 * Wed Jul 08 2009 Dave Jones <davej at redhat.com>
 - Enable a bunch of debugging options that were missed somehow.
 
@@ -2534,2613 +2542,3 @@ fi
 
 * Mon Mar 23 2009 Dave Jones <davej at redhat.com>
 - 2.6.29
-
-* Mon Mar 23 2009 Mauro Carvalho Chehab <mchehab at rehat.com>
-- Some fixes on drivers/media
-- Removed inexistent drivers/media items from config-generic
-- Cinergy T2 option were renamed. Use the current syntax
-
-* Mon Mar 23 2009 Matthew Garrett <mjg at redhat.com>
-- linux-2.6-sony-laptop-rfkill.patch
-   Update to support hotkeys and rfkill switch
-
-* Mon Mar 23 2009 Bill Nottingham <notting at redhat.com>
-- build ide-gd_mod in on PPC (#491380)
-
-* Mon Mar 23 2009 Mark McLoughlin <markmc at redhat.com>
-- Add /sys/bus/pci/devices/*/remove_id for KVM (#487103)
-
-* Mon Mar 23 2009 Chuck Ebbert <cebbert at redhat.com>
-- Linux 2.6.29-rc8-git6
-
-* Mon Mar 23 2009 Roland McGrath <roland at redhat.com>
-- utrace update, fixes /proc/pid/status format (#491508)
-
-* Mon Mar 23 2009 Ben Skeggs <bskeggs at redhat.com>
-- drm-nouveau.patch: fix GEM object leak, and display shutdown issue
-
-* Fri Mar 20 2009 Kyle McMartin <kyle at redhat.com>
-- Linux 2.6.29-rc8-git5
-
-* Thu Mar 19 2009 Mauro Carvalho Chehab <mchehab at redhat.com>
-- Removed v4l-build-fixes.patch
-
-* Thu Mar 19 2009 Mauro Carvalho Chehab <mchehab at redhat.com>
-- update v4l-dvb to reflect changes at linux-next
-
-* Thu Mar 19 2009 Matthew Garrett <mjg at redhat.com>
-- linux-2.6-acpi-video-didl-intel-outputs.patch
-   don't attempt to re-register the backlight device on resume
-- linux-2.6-sony-laptop-rfkill.patch
-   provide rfkill control on current vaios
-
-* Thu Mar 19 2009 Dave Jones <davej at redhat.com>
-- Switch x86-32 back to using 8k stacks.
-
-* Thu Mar 19 2009 Chuck Ebbert <cebbert at redhat.com>
-- Enable the sfc 10GbE network driver.
-
-* Thu Mar 19 2009 Kyle McMartin <kyle at redhat.com>
-- dma-api debug fixes for e1000 and e1000e from tip.
-- fix dma leak in tulip request_irq error path.
-
-* Thu Mar 19 2009 Kyle McMartin <kyle at redhat.com> 2.6.29-0.267.rc8.git4
-- build fixes for v4l tree.
-
-* Thu Mar 19 2009 Roland McGrath <roland at redhat.com> 2.6.29-0.266.rc8.git4
-- utrace update, add ftrace process-tracer widget, drop utrace-ptrace
-
-* Thu Mar 19 2009 Ben Skeggs <bskeggs at redhat.com>
-- drm-nouveau.patch: kms fixes and cleanups
-
-* Thu Mar 19 2009 Chuck Ebbert <cebbert at redhat.com>
-- 2.6.29-rc8-git4
-- Dropped patches, merged upstream:
-    linux-2.6-ext4-extent-header-check-fix.patch
-    linux-2.6-ext4-print-warning-once.patch
-    linux-2.6-net-velocity-dma.patch
-
-* Wed Mar 18 2009 Mauro Carvalho Chehab <mchehab at redhat.com>
-- merge hdpvr patch into v4l-dvb updates
-- update v4l-dvb to reflect changes at linux-next
-
-* Wed Mar 18 2009 Jarod Wilson <jarod at redhat.com>
-- Update hdpvr patch to version targeted for v4l-dvb merge
-- Re-sort patches to add hdpvr after v4l-dvb updates
-
-* Wed Mar 18 2009 Dave Airlie <airlied at redhat.com>
-- drm-next.patch: fix rs600 GART setup
-- drm-modesetting-radeon.patch: allocator fixups
-
-* Wed Mar 18 2009 Ben Skeggs <bskeggs at redhat.com>
-- enable CONFIG_MMIOTRACE on x86/x86_64
-
-* Tue Mar 17 2009 Kyle McMartin <kyle at redhat.com>
-- increase MAX_LOCKDEP_ENTRIES to 10240.
-
-* Mon Mar 16 2009 Josef Bacik <josef at toxicpanda.com> 2.6.29-0.258.rc8.git2
-- update btrfs code so it doesn't pop the stack on x86
-
-* Mon Mar 16 2009 Kyle McMartin <kyle at redhat.com> 2.6.29-0.255.rc8.git2
-- 2.6.29-rc8-git2
-
-* Sun Mar 15 2009 Chuck Ebbert <cebbert at redhat.com> 2.6.29-0.254.rc8.git1
-- 2.6.29-rc8-git1
-- Entire v4l-dvb-fixes patch was merged upstream.
-
-* Fri Mar 13 2009 Mauro Carvalho Chehab <mchehab at redhat.com
-- v4l-dvb patches: better conflict solving with hdpvr, more fixes and updates
-
-* Fri Mar 13 2009 Chuck Ebbert <cebbert at redhat.com> 2.6.29-0.252.rc8
-- Quiet down an ext4 warning message.
-
-* Fri Mar 13 2009 Dave Jones <davej at redhat.com> 2.6.29-0.250.rc8
-- Fix DMA leak in Velocity TX path
-
-* Fri Mar 13 2009 Mauro Carvalho Chehab <mchehab at redhat.com
-- v4l-dvb patches: Add experimental cx231xx, plus more fixes and updates
-
-* Fri Mar 13 2009 Ben Skeggs <bskeggs at redhat.com>
-- drm-nouveau.patch: support needed for multiple xservers
-
-* Fri Mar 13 2009 Kyle McMartin <kyle at redhat.com> 2.6.29-0.247.rc8
-- Linux 2.6.29-rc8
-- squashfs-fix-page-aligned-data.patch: upstream-ish
-- unifdef-rename-getline-symbol.patch: upstream-ish
-
-* Thu Mar 12 2009 Dave Airlie <airlied at redhat.com>
-- drm-next.patch: r600 fixes for suspend/resume
-- drm-modesetting-radeon.patch: rebase on drm-next
-
-* Thu Mar 12 2009 Eric Sandeen <sandeen at redhat.com>
-- Add patches for ext4 flush behavior in some situations
-  (Safer for apps which aren't fsyncing properly)
-
-* Thu Mar 12 2009 Jarod Wilson <jarod at redhat.com>
-- Updated lirc patch to kill a slew of compile warnings and
-  make lirc_serial behave properly w/kfifos
-
-* Thu Mar 12 2009 Dave Jones <davej at redhat.com>
-- Drop no longer needed 'crash' driver.
-
-* Thu Mar 12 2009 Ben Skeggs <bskeggs at redhat.com>
-- drm-nouveau.patch: kms display lockup fixes for a heap of chipsets
-
-* Thu Mar 12 2009 Dave Airlie <airlied at redhat.com>
-- radeon kms - bug fix irq and ib handling on r300 + suspend test hook
-- fix sparc build with kms from spot
-
-* Wed Mar 11 2009 Chuck Ebbert <cebbert at redhat.com>
-- 2.6.29-rc7-git5
-- Dropped ingo-fix-atom-failures.patch, merged upstream.
-
-* Wed Mar 11 2009 Matthew Garrett <mjg at redhat.com>
-- linux-2.6-acpi-video-didl-intel-outputs.patch
-   Initialise the DIDL field in Intel opregion before bringing up ACPI video
-- linux-2.6-acpi-video-dos.patch
-   Reenable display switch support now that above patch is included
-
-* Wed Mar 11 2009 Kristian Høgsberg <krh at redhat.com>
-- Add patch to issue a wbinvd in the GEM execbuffer patch to work
-  around insufficient flushing on i855 and i865 chipsets.
-
-* Wed Mar 11 2009 Steve Dickson <steved at redhat.com> 2.6.29-0.236.rc7.git4
-- Removed both the lockd-svc-register.patch and
-  sunrpc-ipv6-rpcbind.patch patches in favor of simply turning
-  off CONFIG_SUNRPC_REGISTER_V4 config variable.
-
-* Wed Mar 11 2009 Eric Sandeen <sandeen at redhat.com> 2.6.29-0.235.rc7.git4
-- Fix incorrect header check values in ext4_ext_search_right()
-  Should address kernel.org bugzilla #12821
-
[...2251 lines suppressed...]
-- 2.6.26-rc3-git4
-
-* Wed May 21 2008 John W. Linville <linville at redhat.com>
-- libertas: Fix ethtool statistics
-- mac80211: fix NULL pointer dereference in ieee80211_compatible_rates
-- mac80211: don't claim iwspy support
-- rtl8187: resource leak in error case
-- hostap_cs: add ID for Conceptronic CON11CPro
-- orinoco_cs: add ID for SpeedStream wireless adapters
-
-* Wed May 21 2008 Dave Jones <davej at redhat.com>
-- 2.6.26-rc3-git3
-
-* Tue May 20 2008 Dave Jones <davej at redhat.com>
-- 2.6.26-rc3-git1
-
-* Mon May 19 2008 Dave Jones <davej at redhat.com>
-- Disable PATA_ISAPNP (it's busted).
-
-* Mon May 19 2008 John W. Linville <linville at redhat.com>
-- mac80211 : Association with 11n hidden ssid ap.
-- libertas: fix command timeout after firmware failure
-- mac80211: Add RTNL version of ieee80211_iterate_active_interfaces
-- wireless: Create 'device' symlink in sysfs
-- hostap: fix "registers" registration in procfs
-- wireless, airo: waitbusy() won't delay
-- iwlwifi : Set monitor mode for 4965
-- iwlwifi : Set monitor mode for 3945
-- make sta_rx_agg_session_timer_expired() static
-- remove ieee80211_tx_frame()
-- remove ieee80211_wx_{get,set}_auth()
-- wireless: fix "iwlwifi: unify init driver flow"
-- iwl3945: do not delay hardware scan if it is a direct scan
-- ath5k: Fix loop variable initializations
-- zd1211rw: initial IBSS support
-- mac80211: use hardware flags for signal/noise units
-- mac80211: make rx radiotap header more flexible
-- iwlwifi: HW dependent run time calibration
-- iwlwifi: HW crypto acceleration fixes
-- iwlwifi: remove uneeded callback
-- iwlwifi: CT-Kill configuration fix
-- iwlwifi: HT IE in probe request clean up
-- iwlwifi: clean up register names and defines
-- iwlwifi: move Flow Handlers define to iwl-fh.h
-- iwlwifi: move verify_ucode functions to iwl-core
-- iwlwifi: move hw_rx_handler_setup to iwl-4965.c
-- iwlwifi-5000: update the CT-Kill value for 5000 series
-- iwlwifi-5000: add run time calibrations for 5000
-- iwlwifi-5000: update the byte count in SCD
-- iwlwifi: move iwl4965_init_alive_start to iwl-4965.c
-- wireless: Add missing locking to cfg80211_dev_rename
-- mac80211: correct skb allocation
-- iwlwifi: move per driverdebug_level to per device
-- iwlwifi: move debug_level to sysfs/bus/pci/devices
-- iwlwifi: update levels of debug prints
-- iwlwifi: adding parameter of fw_restart
-- iwlwifi: remove support for Narrow Channel (10Mhz)
-- iwlwifi: HT antenna/chains overhaul
-- iwlwifi: TLC modifications
-- iwlwifi: rate scale module cleanups
-- iwlwifi: rate scale restructure toggle_antenna functions
-- iwlwifi: rs fix wrong parenthesizing in rs_get_lower_rate function
-- iwlwifi: rate sacaling fixes
-- iwlwifi: more RS improvements
-- mac80211: remove unnecessary byteshifts in frame control testing
-- wireless: use get/put_unaligned_* helpers
-- mac80211: tkip.c use kernel-provided infrastructure
-- b43: replace limit_value macro with clamp_val
-- b43legacy: replace limit_value macro with clamp_val
-- b43: use the bitrev helpers rather than rolling a private one
-- libertas: debug output tweaks for lbs_thread
-- libertas: make some functions void
-- libertas: allow removal of card at any time
-- libertas: remove lbs_get_data_rate()
-- b43: nphy.c remove duplicated include
-- mac80211: Replace ieee80211_tx_control->key_idx with ieee80211_key_conf
-- mac80211: Add IEEE80211_KEY_FLAG_PAIRWISE
-- rt2x00: Support hardware RTS and CTS-to-self frames
-- rt2x00: Remove DRIVER_SUPPORT_MIXED_INTERFACES
-- rt2x00: Use rt2x00 queue numbering
-- rt2x00: Add helper macros
-- rt2x00: Fix kernel-doc
-- rt2x00: Release rt2x00 2.1.5
-- rt2x00: Clarify supported chipsets in Kconfig
-- mac80211: Set IEEE80211_TXPD_REQ_TX_STATUS for all TX frames
-- mac80211: a few code cleanups
-- mac80211: clean up get_tx_stats callback
-- mac80211: remove queue info from ieee80211_tx_status
-- mac80211: QoS related cleanups
-- mac80211: fix wme code
-- mac80211: require four hardware queues for QoS/HT
-- mac80211: proper STA info locking
-- mac80211: fix queue constant confusion
-- wireless: fix warning introduced by "mac80211: QoS related cleanups"
-- ssb: Allow reading of 440-byte SPROM that is not rev 4
-- b43: Rewrite LO calibration algorithm
-- b43: Remove some dead code
-- b43: Don't disable IRQs in mac_suspend
-- iwlwifi: Add power level support
-- airo: use netstats in net_device structure
-- arlan: use netstats in net_device structure
-- atmel: use netstats in net_device structure
-- iwlwifi: arranging aggregation actions
-- iwlwifi: expanding HW parameters control
-- iwlwifi: support 64 bit DMA masks
-- iwlwifi: handle shared memory
-- iwlwifi: unify init driver flow
-- iwlwifi: iwl-sta redundant includes clean up
-- iwlwifi-5000: add iwl 5000 shared memory handlers
-- iwlwifi: map A-MPDU HW queue to mac80211 A-MPDU SW queue
-- iwlwifi-5000: rename iwl5000_init_nic to iwl5000_init_config
-- iwlwifi: create disable SCD Tx FIFOs handler
-- iwlwifi: move NIC init and Tx queues init to iwlcore
-- iwlwifi: handle shared memory Rx index access
-- iwlwifi: remove 4965 prefix from iwl4965_kw and iwl4965_tx_queue
-- iwlwifi: fix spinlock used before initialized
-- iwlwifi: move find station to iwl-sta.c
-- iwlwifi: cleanup set_pwr_src
-- iwlwifi: define ANA_PLL values in iwl-csr.h
-- iwlwifi: export int iwl4965_set_pwr_src
-- iwlwifi: changing EEPROM layout handling
-- iwlwifi: remove includes to net/ieee80211.h
-- iwlwifi: add apm init handler
-- iwlwifi: add iwl_hw_detect function to iwl core
-- iwlwifi: check eeprom version in pci probe time
-- iwlwifi: reorganize TX RX constatns
-- iwlwifi: 3945 remove unused SCD definitions
-- iwlwifi: remove 49 prefix from general CSR values
-- iwlwifi: remove unnecessary apmg settings
-- iwlwifi: wrapping nic configuration in iwl core handler
-- iwlwifi-5000: adding initial recognition for the 5000 family
-- iwlwifi-5000: add ops infrastructure for 5000
-- iwlwifi-5000: add apm_init handler for 5000 HW family
-- iwlwifi-5000: use iwl4965_set_pwr_src in 5000
-- iwlwifi-5000: EEPROM settings for 5000
-- iwlwifi-5000: adding iwl5000 HW parameters
-- iwlwifi-5000: adjust antennas names in 5000 HW family
-- iwlwifi-5000: Add HW REV of 5000 HW family
-- iwlwifi-5000: add eeprom check version handler
-- iwlwifi-5000: add nic config handler for 5000 HW
-- iwlwifi: rename iwl-4965-commands to iwl-commands.h
-- iwlwifi: rename iwl-4965.h to iwl-dev.h
-- iwlwifi: move RX code to iwl-rx.c
-- iwlwifi: don't override association channel with control channel
-- iwlwifi: remove 4965 from station_entry
-- iwlwifi: debugfs EEPROM dump
-- iwlwifi: remove 4965 from rx_packet
-- iwlwifi: generalize iwl4965_send_add_station function
-- iwlwifi-5000: add build_addsta_hcmd handler for 5000 HW
-- iwlwifi: move iwl4965_set_rxon_ht into iwlcore
-- iwlwifi: compile iwl-sta into iwlcore
-- iwlwifi: add device sysfs version entry
-- at76: use hardware flags for signal/noise units
-
-* Sun May 18 2008 Dave Jones <davej at redhat.com>
-- 2.6.26-rc3
-
-* Sat May 17 2008 Eric Paris <eparis at redhat.com>
-- SELinux: enable deffered context validation
-- SELinux: don't sleep while holding locks in above patch
-- SELinux: replace ioctl specific knowlege in the selinux code and follow generic permissions
-- SELinux: not all reading in /proc needs ptrace, so make those things just use 'read' perms
-
-* Sat May 17 2008 Dave Jones <davej at redhat.com>
-- Enable PAGEALLOC debugging for a while. (Some things might get slow).
-
-* Sat May 17 2008 Dave Jones <davej at redhat.com>
-- Disable CONFIG_SND_PCSP (#447039)
-
-* Fri May 16 2008 Dave Jones <davej at redhat.com>
-- Enable CONFIG_SND_SERIAL_U16550
-
-* Fri May 16 2008 Dave Jones <davej at redhat.com>
-- 2.6.26-rc2-git5
-
-* Thu May 15 2008 Eric Sandeen <esandeen at redhat.com>
-- ext3/4: fix uninitialized bs in ext3/4_xattr_set_handle()
-
-* Wed May 14 2008 Eric Paris <eparis at redhat.com>
-- fix may sleep in allocation for previous deffered context patch
-- replace selinux specific knowledge of ioctls with a generic ioctl implementation
-
-* Mon May 12 2008 Kyle McMartin <kmcmartin at redhat.com>
-- Linux 2.6.25.3
-
-* Fri May 09 2008 John W. Linville <linville at redhat.com> 2.6.25.2-7
-- Regroup wireless patches as prep for 2.6.26 and F10 cycles
-
-* Fri May 09 2008 Eric Paris <eparis at redhat.com>
-- support deffered context validation in selinux.  aka rpm can lay down illegal labels. (won't upstream until .27 opens)
-
-* Wed May 07 2008 Chuck Ebbert <cebbert at redhat.com> 2.6.25.2-5
-- Add the patches queued for 2.6.25.3
-
-###
-# The following Emacs magic makes C-c C-e use UTC dates.
-# Local Variables:
-# rpm-change-log-uses-utc: t
-# End:
-###




More information about the fedora-extras-commits mailing list