]> Pileus Git - ~andy/linux/blobdiff - drivers/staging/tidspbridge/include/dspbridge/io.h
staging: ti dspbridge: Rename words with camel case
[~andy/linux] / drivers / staging / tidspbridge / include / dspbridge / io.h
index aa24535ade66417ad2e223b474c9db2c91b3cc8d..b8670cabb17cd21915805f45b1aec78755e11531 100644 (file)
  *      channel_mgr:            Location to store a channel manager object on
  *                              output.
  *      hdev_obj:             Handle to a device object.
- *      pMgrAttrs:              IO manager attributes.
- *      pMgrAttrs->birq:        I/O IRQ number.
- *      pMgrAttrs->irq_shared:     TRUE if the IRQ is shareable.
- *      pMgrAttrs->word_size:   DSP Word size in equivalent PC bytes..
+ *      mgr_attrts:              IO manager attributes.
+ *      mgr_attrts->birq:        I/O IRQ number.
+ *      mgr_attrts->irq_shared:     TRUE if the IRQ is shareable.
+ *      mgr_attrts->word_size:   DSP Word size in equivalent PC bytes..
  *  Returns:
  *      0:                Success;
  *      -ENOMEM:            Insufficient memory for requested resources.
  *  Requires:
  *      io_init(void) called.
  *      io_man != NULL.
- *      pMgrAttrs != NULL.
+ *      mgr_attrts != NULL.
  *  Ensures:
  */
 extern int io_create(OUT struct io_mgr **io_man,
                            struct dev_object *hdev_obj,
-                           IN CONST struct io_attrs *pMgrAttrs);
+                           IN CONST struct io_attrs *mgr_attrts);
 
 /*
  *  ======== io_destroy ========