All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/14] staging: vc04_services: Replace typedefs and
@ 2019-11-05 22:55 Jamal Shareef
  2019-11-05 22:55 ` [PATCH v2 01/14] staging: vc04_services: Replace VCHI_INSTANCE_T with struct vhci_instance_handle Jamal Shareef
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: Jamal Shareef @ 2019-11-05 22:55 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: gregkh, Jamal Shareef

This patchset replaces typedefs with native types where feasible and
renames callback functions to match kernel code style.

Changes in v2:
 - Rewrite patch subject lines and body to be more descriptive for all
   patches.

Jamal Shareef (14):
  staging: vc04_services: Replace VCHI_INSTANCE_T with struct
    vhci_instance_handle
  staging: vc04_services: Replace VCHI_SERVICE_HANDLE_T typedef with
    struct vchi_service_handle
  staging: vc04_services: Rename callback VCHI_CALLBACK_T to
    vchi_callback
  staging: vc04_services: Replace VCHIQ_STATUS_T enum typedef with enum
    vchiq_status
  staging: vc04_services: Replace VCHIQ_BULK_MODE_T enum typedef with
    enum vchiq_bulk_mode
  staging: vc04_services: Replace VCHIQ_SERVICE_OPTION_T enum typedef
    with enum vchiq_service_option
  staging: vc04_services: Replace VCHIQ_CONNSTATE_T enum typedef with
    enum vchiq_connstate
  staging: vc04_services: Replace VCHIQ_BULK_DIR_T enum typedef with
    enum vchiq_bulk_dir
  staging: vc04_services: Rename callback VCHIQ_USERDATA_TERM_T to
    vchiq_userdata_term
  staging: vc04_services: Rename VCHIQ_CALLBACK_T to vchiq_callback
  staging: vc04_services: Rename VCHIQ_REMOTE_USE_CALLBACK_T to
    vchiq_remote_callback
  staging: vc04_services: Replace VCHIQ_SERVICE_HANDLE_T typedef with
    unsigned int
  staging: vc04_services: Replace VCHIQ_INSTANCE_T typedef with struct
    vchiq_instance
  staging: vc04_services: Replace VCHIQ_PLATFORM_STATE_T typedef with
    struct opaque_platform_state

 .../bcm2835-audio/bcm2835-vchiq.c             |   4 +-
 .../vc04_services/bcm2835-audio/bcm2835.h     |   2 +-
 .../vc04_services/bcm2835-camera/mmal-vchiq.c |   4 +-
 .../vc04_services/interface/vchi/vchi.h       |  56 +++---
 .../interface/vchi/vchi_common.h              |   6 +-
 .../interface/vchiq_arm/vchiq_2835_arm.c      |  10 +-
 .../interface/vchiq_arm/vchiq_arm.c           | 170 +++++++++---------
 .../interface/vchiq_arm/vchiq_arm.h           |  32 ++--
 .../interface/vchiq_arm/vchiq_core.c          | 116 ++++++------
 .../interface/vchiq_arm/vchiq_core.h          |  88 ++++-----
 .../interface/vchiq_arm/vchiq_debugfs.c       |  14 +-
 .../interface/vchiq_arm/vchiq_debugfs.h       |   4 +-
 .../interface/vchiq_arm/vchiq_if.h            |  92 +++++-----
 .../interface/vchiq_arm/vchiq_ioctl.h         |   4 +-
 .../interface/vchiq_arm/vchiq_shim.c          | 116 ++++++------
 15 files changed, 358 insertions(+), 360 deletions(-)

-- 
2.17.1



^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2019-11-07 15:22 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-05 22:55 [PATCH v2 00/14] staging: vc04_services: Replace typedefs and Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 01/14] staging: vc04_services: Replace VCHI_INSTANCE_T with struct vhci_instance_handle Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 02/14] staging: vc04_services: Replace VCHI_SERVICE_HANDLE_T typedef with struct vchi_service_handle Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 03/14] staging: vc04_services: Rename callback VCHI_CALLBACK_T to vchi_callback Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 04/14] staging: vc04_services: Replace VCHIQ_STATUS_T enum typedef with enum vchiq_status Jamal Shareef
2019-11-07 15:22   ` Greg KH
2019-11-05 22:55 ` [PATCH v2 05/14] staging: vc04_services: Replace VCHIQ_BULK_MODE_T enum typedef with enum vchiq_bulk_mode Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 06/14] staging: vc04_services: Replace VCHIQ_SERVICE_OPTION_T enum typedef with enum vchiq_service_option Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 07/14] staging: vc04_services: Replace VCHIQ_CONNSTATE_T enum typedef with enum vchiq_connstate Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 08/14] staging: vc04_services: Replace VCHIQ_BULK_DIR_T enum typedef with enum vchiq_bulk_dir Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 09/14] staging: vc04_services: Rename callback VCHIQ_USERDATA_TERM_T to vchiq_userdata_term Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 10/14] staging: vc04_services: Rename VCHIQ_CALLBACK_T to vchiq_callback Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 11/14] staging: vc04_services: Rename VCHIQ_REMOTE_USE_CALLBACK_T to vchiq_remote_callback Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 12/14] staging: vc04_services: Replace VCHIQ_SERVICE_HANDLE_T typedef with unsigned int Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 13/14] staging: vc04_services: Replace VCHIQ_INSTANCE_T typedef with struct vchiq_instance Jamal Shareef
2019-11-05 22:55 ` [PATCH v2 14/14] staging: vc04_services: Replace VCHIQ_PLATFORM_STATE_T typedef with struct opaque_platform_state Jamal Shareef

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.