An error occurred fetching the project authors.
  1. 05 Jan, 2003 1 commit
    • Chris Wilson's avatar
      [PATCH] ip27-rtc.c create_proc_read_entry patch · 73ef1072
      Chris Wilson authored
        As part of my work on the Linux Kernel Janitors project, cleaning up on
        functions which call create_proc_*_entry and don't check for an error
        return, I would like to submit my patch to arch/mips64/sgi-ip27/ip27-rtc.c.
      
        This patch adds a printk() if misc_register fails (since that causes the
        driver to fail to load, it should be logged somewhere), and checks that
        create_proc_read_entry returned a valid handle. ENOENT seems to me like a
        good error code to return in this case, although EBUSY is a candidate too.
      73ef1072
  2. 30 Dec, 2002 1 commit
    • Andrew Morton's avatar
      [PATCH] BIN_TO_BCD consolidation · db8f4c7e
      Andrew Morton authored
      Cleanup patch from Hollis Blanchard <hollis@austin.ibm.com>
      
      We have a large number of private implementations of BIN_TO_BCD and
      BCD_TO_BIN, which are all the same.  And a lot of them are inflexible because
      they modify their arg:
      
      	#define BIN_TO_BCD(val) ((val)=(((val)/10)<<4) + (val)%10)
      
      - Create (in <linux/bcd.h> a generic BIN2BCD/BCD2BIN which does not modify
        its arg
      
      - Create generic BIN_TO_BCD/BCD_TO_BIN which uses the above
      
      - Update lots of callers to use the new generic version.
      db8f4c7e
  3. 11 Nov, 2002 1 commit
  4. 23 May, 2002 1 commit
  5. 07 Mar, 2002 1 commit
    • Rusty Russell's avatar
      [PATCH] misc_register/request_region · 8656699f
      Rusty Russell authored
      These are the small subset which were obviously correct.
      
      Evgeniy Polyakov <johnpol@2ka.mipt.ru>:
      	Patches check return values for request_region() and misc_register().
      	This patches make janitorial project TODO list a bit smaller.
      8656699f
  6. 05 Feb, 2002 2 commits