README: remove section about pldm daemon

The section describing the pldm daemon was added a bit prematurely. This
is still work in progress alongwith the MCTP design. This will be
described later on once the design is finalised.

Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
Change-Id: I0a13c8e561acce64b74ec5f69e6dcab881d087b7
diff --git a/README.md b/README.md
index 1ee1a6b..aad37a9 100644
--- a/README.md
+++ b/README.md
@@ -41,34 +41,6 @@
 Source files are named according to the PLDM Type, for eg base.[hpp/cpp],
 fru.[hpp/cpp], etc.
 
-## daemon
-This is the PLDM daemon application that deals with various aspects of the
-requester and responder functions, as explained at
-https://github.com/openbmc/docs/blob/master/designs/pldm-stack.md.
-
-### Responder handler registration
-
-The PLDM daemon provides a registration API for dynamically linked and
-dynamically loaded responder libraries so that they can register handlers for
-PLDM commands. The registration API is as follows:
-```
-void registerHandler(
-    uint8_t pldmType, uint8_t pldmCommand,
-    void(*func_ptr)(const pldm_msg_payload* request, pldm_msg* response));
-```
-The handler has to prepare a PLDM response message and write the same to an
-output argument.
-
-The PLDM daemon will expect each of the responder libraries to implement a
-method that it can invoke to perform the registration. The implementation of
-this method would call `registerHandler` to register various handlers. The
-signature of this method is:
-```
-void registerHandlers()
-```
-For standard PLDM types, libpldmresponder must place this method in appropriate
-namespaces, for eg `pldm::base::registerHandlers`.
-
 ## TODO
 Consider hosting libpldm above in a repo of its own, probably even outside the
 OpenBMC project? A separate repo would enable something like git submodule.