[BACK]Return to aria.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / dev / isa

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/dev/isa/aria.c between version 1.30 and 1.31

version 1.30, 2009/05/12 08:44:19 version 1.31, 2009/05/12 09:10:15
Line 134  struct aria_softc {
Line 134  struct aria_softc {
         int     sc_sendcmd_err;          int     sc_sendcmd_err;
 };  };
   
 int     ariaprobe(struct device *, cfdata_t, void *);  int     ariaprobe(device_t, cfdata_t, void *);
 void    ariaattach(struct device *, struct device *, void *);  void    ariaattach(device_t, device_t, void *);
 void    ariaclose(void *);  void    ariaclose(void *);
 int     ariaopen(void *, int);  int     ariaopen(void *, int);
 int     ariareset(bus_space_tag_t, bus_space_handle_t);  int     ariareset(bus_space_tag_t, bus_space_handle_t);
Line 238  const struct audio_hw_if aria_hw_if = {
Line 238  const struct audio_hw_if aria_hw_if = {
  * Probe for the aria hardware.   * Probe for the aria hardware.
  */   */
 int  int
 ariaprobe(struct device *parent, cfdata_t cf, void *aux)  ariaprobe(device_t parent, cfdata_t cf, void *aux)
 {  {
         bus_space_handle_t ioh;          bus_space_handle_t ioh;
         struct isa_attach_args *ia;          struct isa_attach_args *ia;
Line 395  aria_do_kludge(
Line 395  aria_do_kludge(
  * pseudo-device driver.   * pseudo-device driver.
  */   */
 void  void
 ariaattach(struct device *parent, struct device *self, void *aux)  ariaattach(device_t parent, device_t self, void *aux)
 {  {
         bus_space_handle_t ioh;          bus_space_handle_t ioh;
         struct aria_softc *sc;          struct aria_softc *sc;

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

CVSweb <webmaster@jp.NetBSD.org>